Skip to content

Commit 327075d

Browse files
committed
Android: Update SDL to 2.30.11
1 parent 32170fc commit 327075d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

builds/android/app/src/main/java/org/libsdl/app/SDLActivity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
6363
private static final String TAG = "SDL";
6464
private static final int SDL_MAJOR_VERSION = 2;
6565
private static final int SDL_MINOR_VERSION = 30;
66-
private static final int SDL_MICRO_VERSION = 6;
66+
private static final int SDL_MICRO_VERSION = 11;
6767
/*
6868
// Display InputType.SOURCE/CLASS of events and devices
6969
//
@@ -91,7 +91,7 @@ public static void debugSource(int sources, String prefix) {
9191
| InputDevice.SOURCE_CLASS_POSITION
9292
| InputDevice.SOURCE_CLASS_TRACKBALL);
9393
94-
if (s2 != 0) cls += "Some_Unkown";
94+
if (s2 != 0) cls += "Some_Unknown";
9595
9696
s2 = s_copy & InputDevice.SOURCE_ANY; // keep source only, no class;
9797
@@ -165,7 +165,7 @@ public static void debugSource(int sources, String prefix) {
165165
if (s == FLAG_TAINTED) src += " FLAG_TAINTED";
166166
s2 &= ~FLAG_TAINTED;
167167
168-
if (s2 != 0) src += " Some_Unkown";
168+
if (s2 != 0) src += " Some_Unknown";
169169
170170
Log.v(TAG, prefix + "int=" + s_copy + " CLASS={" + cls + " } source(s):" + src);
171171
}

0 commit comments

Comments
 (0)