File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
builds/android/app/src/main/java/org/libsdl/app Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments