From 3c4fad8afa4095e87fda42fef336d49529a40f3d Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 2 Jun 2013 14:27:54 +0200 Subject: [PATCH] Changed documentation in header because LocalReferenceHolder not public API. --- include/SDL_system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_system.h b/include/SDL_system.h index 5a6126157..26e9eaa0a 100644 --- a/include/SDL_system.h +++ b/include/SDL_system.h @@ -62,7 +62,7 @@ extern DECLSPEC void * SDLCALL SDL_AndroidGetJNIEnv(); This returns jobject, but the prototype is void* so we don't need jni.h The jobject returned by SDL_AndroidGetActivity is a local reference. It is the caller's responsibility to properly release it - (using LocalReferenceHolder or manually with env->DeleteLocalRef) + (using env->Push/PopLocalFrame or manually with env->DeleteLocalRef) */ extern DECLSPEC void * SDLCALL SDL_AndroidGetActivity();