Skip to content

Commit 5219129

Browse files
committed
fix emulator not found function
1 parent e39526b commit 5219129

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)