mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-06 06:34:35 +00:00
Remove redundant parenthesis in SDL_MUSTLOCK macro
This commit is contained in:
parent
8527d042bc
commit
f1b3523c67
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ typedef Uint32 SDL_SurfaceFlags;
|
|||
*
|
||||
* \since This macro is available since SDL 3.2.0.
|
||||
*/
|
||||
#define SDL_MUSTLOCK(S) ((((S)->flags & SDL_SURFACE_LOCK_NEEDED)) == SDL_SURFACE_LOCK_NEEDED)
|
||||
#define SDL_MUSTLOCK(S) (((S)->flags & SDL_SURFACE_LOCK_NEEDED) == SDL_SURFACE_LOCK_NEEDED)
|
||||
|
||||
/**
|
||||
* The scaling mode.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue