Browse Source

android: Moved internal function to new position.

It was grouped with functions for the public system header.
Philipp Wiesemann 7 years ago
parent
commit
fc436a3a9d
1 changed files with 5 additions and 6 deletions
  1. 5 6
      src/core/android/SDL_android.c

+ 5 - 6
src/core/android/SDL_android.c

@@ -668,6 +668,11 @@ int Android_JNI_SetupThread(void)
     return 1;
 }
 
+jclass Android_JNI_GetActivityClass(void)
+{
+    return mActivityClass;
+}
+
 /*
  * Audio support
  */
@@ -1867,12 +1872,6 @@ const char * SDL_AndroidGetExternalStoragePath(void)
     return s_AndroidExternalFilesPath;
 }
 
-jclass Android_JNI_GetActivityClass(void)
-{
-    return mActivityClass;
-}
-
 #endif /* __ANDROID__ */
 
 /* vi: set ts=4 sw=4 expandtab: */
-