diff --git a/SDL/src/thread/SDL_thread.c b/SDL/src/thread/SDL_thread.c index 5c51d6a..d1d6e53 100644 --- a/SDL/src/thread/SDL_thread.c +++ b/SDL/src/thread/SDL_thread.c @@ -290,9 +290,11 @@ Uint32 SDL_GetThreadID(SDL_Thread *thread) void SDL_KillThread(SDL_Thread *thread) { +#ifndef GEKKO if ( thread ) { SDL_SYS_KillThread(thread); SDL_WaitThread(thread, NULL); } +#endif }