diff options
Diffstat (limited to 'source/sys_unix.c')
-rw-r--r-- | source/sys_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/sys_unix.c b/source/sys_unix.c index 50ba9cb..7b471f0 100644 --- a/source/sys_unix.c +++ b/source/sys_unix.c @@ -540,7 +540,7 @@ Sys_GetClipboardData ================= */ char *Sys_GetClipboardData( void ) { -#ifdef USE_SDL +#if USE_SDL SDL_SysWMinfo info; Display *dpy; Window sowner, win; @@ -684,7 +684,7 @@ static void Sys_Segv( int signum ) { Sys_ShutdownTTY(); -#ifdef USE_SDL +#if USE_SDL SDL_ShowCursor( SDL_ENABLE ); SDL_WM_GrabInput( SDL_GRAB_OFF ); SDL_Quit(); @@ -775,7 +775,7 @@ void Sys_Error( const char *error, ... ) { Sys_ShutdownTTY(); -#ifdef USE_SDL +#if USE_SDL SDL_ShowCursor( SDL_ENABLE ); SDL_WM_GrabInput( SDL_GRAB_OFF ); SDL_Quit(); |