Fix -Wundef warnings due to use of unguarded __RISCOS__

This commit is contained in:
Anonymous Maarten
2023-03-27 18:42:49 +02:00
parent 1ad42290cd
commit 74209d4452

View File

@@ -176,7 +176,7 @@ SDL_ThreadID(void)
int SDL_SYS_SetThreadPriority(SDL_ThreadPriority priority)
{
#if __RISCOS__
#if defined(__RISCOS__)
/* FIXME: Setting thread priority does not seem to be supported */
return 0;
#else