mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 18:40:02 +00:00
engine: platform: sdl: fix parentheses around IsAudioError macro
This commit is contained in:
parent
24763f9b07
commit
3a8c58d192
@ -34,9 +34,9 @@ GNU General Public License for more details.
|
|||||||
#define SDL_PauseAudioDevice( a, b ) SDL_PauseAudio( ( b ) )
|
#define SDL_PauseAudioDevice( a, b ) SDL_PauseAudio( ( b ) )
|
||||||
#define SDL_LockAudioDevice( x ) SDL_LockAudio()
|
#define SDL_LockAudioDevice( x ) SDL_LockAudio()
|
||||||
#define SDL_UnlockAudioDevice( x ) SDL_UnlockAudio()
|
#define SDL_UnlockAudioDevice( x ) SDL_UnlockAudio()
|
||||||
#define SDLash_IsAudioError( x ) ( x ) != 0
|
#define SDLash_IsAudioError( x ) (( x ) != 0)
|
||||||
#else
|
#else
|
||||||
#define SDLash_IsAudioError( x ) ( x ) == 0
|
#define SDLash_IsAudioError( x ) (( x ) == 0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user