mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-02-17 20:34:28 +01:00
Android: Fixed two warnings.
This commit is contained in:
parent
40244dc1a9
commit
1a348aac4f
@ -130,10 +130,10 @@ SDL_SYS_CreateThread(SDL_Thread * thread, void *args)
|
|||||||
void
|
void
|
||||||
SDL_SYS_SetupThread(const char *name)
|
SDL_SYS_SetupThread(const char *name)
|
||||||
{
|
{
|
||||||
#ifndef __NACL__
|
#if !defined(__ANDROID__) && !defined(__NACL__)
|
||||||
int i;
|
int i;
|
||||||
sigset_t mask;
|
sigset_t mask;
|
||||||
#endif
|
#endif /* !__ANDROID__ && !__NACL__ */
|
||||||
|
|
||||||
if (name != NULL) {
|
if (name != NULL) {
|
||||||
#if defined(__MACOSX__) || defined(__IPHONEOS__) || defined(__LINUX__)
|
#if defined(__MACOSX__) || defined(__IPHONEOS__) || defined(__LINUX__)
|
||||||
|
Loading…
Reference in New Issue
Block a user