Android: Fixed up drop events for new interface.

This commit is contained in:
Ryan C. Gordon 2016-01-05 05:31:33 -05:00
parent eeb899999f
commit 881ccccbcf
1 changed files with 2 additions and 1 deletions

View File

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