Corrected return value to be of correct type.

This commit is contained in:
Philipp Wiesemann 2013-07-24 22:25:17 +02:00
parent adce8bf505
commit 5cdb605a41

View file

@ -293,7 +293,7 @@ static SDL_bool LocalReferenceHolder_Init(struct LocalReferenceHolder *refholder
const int capacity = 16; const int capacity = 16;
if ((*env)->PushLocalFrame(env, capacity) < 0) { if ((*env)->PushLocalFrame(env, capacity) < 0) {
SDL_SetError("Failed to allocate enough JVM local references"); SDL_SetError("Failed to allocate enough JVM local references");
return false; return SDL_FALSE;
} }
++s_active; ++s_active;
refholder->m_env = env; refholder->m_env = env;