Same as 4c481f9933. Use 'app_process' as executable name (should fix #71 and #23)

This commit is contained in:
Pablo Mayobre
2014-07-12 17:25:58 +00:00
parent d1ad6cc5a3
commit c27f19c141
@@ -27,7 +27,7 @@ void Java_org_libsdl_app_SDLActivity_nativeInit(JNIEnv* env, jclass cls, jobject
/* Run the application code! */
int status;
char *argv[2];
argv[0] = SDL_strdup("SDL_app");
argv[0] = SDL_strdup("app_process");
argv[1] = NULL;
status = SDL_main(1, argv);