Skip to content

Commit 59dca75

Browse files
authored
Merge pull request #639 from ranaaditya/emulator-fix-636
Fix function checking for emulator
2 parents b04570b + 5219129 commit 59dca75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mode/src/processing/mode/android/EmulatorController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ synchronized public void launch(final AndroidSDK sdk, final boolean wear)
7575
String gpuFlag = "auto";
7676

7777
final File emulator = sdk.getEmulatorTool();
78-
if (emulator == null || emulator.exists()) {
78+
if (emulator == null || !emulator.exists()) {
7979
System.err.println("EmulatorController: Emulator is not available.");
8080
return;
8181
}

0 commit comments

Comments
 (0)