Fixed compiler warning about returning a value in a void function.

This commit is contained in:
Philipp Wiesemann 2017-01-21 22:00:56 +01:00
parent 5e78bc6474
commit 800a9e84f4
1 changed files with 0 additions and 2 deletions

View File

@ -2912,8 +2912,6 @@ SDL_GL_DeduceMaxSupportedESProfile(int* major, int* minor)
*major = 2; *major = 2;
*minor = 0; *minor = 0;
} }
#else
return SDL_FALSE;
#endif #endif
} }