Skip to content

Commit 588f7cf

Browse files
committed
remove '-no-audio' flag
It was causing the following error on Arch Linux (x86_64, 4.7.0-1-ARCH): qemu-system-i386: -audio: invalid option
1 parent d01a274 commit 588f7cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

devices/emulator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ def boot_devices():
7575
print "Booting Device:", device_name
7676
time.sleep(0.3)
7777
if settings.HEADLESS:
78-
sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-audio -no-window",
78+
sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-window",
7979
stdout=sub.PIPE, stderr=sub.PIPE, shell=True)
8080
else:
81-
sub.Popen('emulator -avd ' + device_name + " -wipe-data -no-audio",
81+
sub.Popen('emulator -avd ' + device_name + " -wipe-data",
8282
stdout=sub.PIPE, stderr=sub.PIPE, shell=True)
8383

8484
print "Waiting", settings.AVD_BOOT_DELAY, "seconds"

0 commit comments

Comments
 (0)