Android: Fixed up drop events for new interface.
diff --git a/src/core/android/SDL_android.c b/src/core/android/SDL_android.c
index f6e0a83..44f6e80 100644
--- a/src/core/android/SDL_android.c
+++ b/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 */