Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Corrected return value to be of correct type.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jul 24, 2013
1 parent f886347 commit 7000ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/android/SDL_android.c
Expand Up @@ -293,7 +293,7 @@ static SDL_bool LocalReferenceHolder_Init(struct LocalReferenceHolder *refholder
const int capacity = 16;
if ((*env)->PushLocalFrame(env, capacity) < 0) {
SDL_SetError("Failed to allocate enough JVM local references");
return false;
return SDL_FALSE;
}
++s_active;
refholder->m_env = env;
Expand Down

0 comments on commit 7000ba3

Please sign in to comment.