Browse Source

Android: Fixed up drop events for new interface.

Ryan C. Gordon 9 years ago
parent
commit
881ccccbcf
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/core/android/SDL_android.c

+ 2 - 1
src/core/android/SDL_android.c

@@ -144,8 +144,9 @@ void Java_org_libsdl_app_SDLActivity_onNativeDropFile(
                                     jstring filename)
 {
     const char *path = (*env)->GetStringUTFChars(env, filename, NULL);
-    SDL_SendDropFile(path);
+    SDL_SendDropFile(NULL, path);
     (*env)->ReleaseStringUTFChars(env, filename, path);
+    SDL_SendDropComplete(NULL);
 }
 
 /* Resize */