mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Reverted comment change in previous commit
This commit is contained in:
parent
a7ff6e9615
commit
48989e2a87
@ -28,8 +28,9 @@
|
|||||||
#include "SDL_yuv_c.h"
|
#include "SDL_yuv_c.h"
|
||||||
|
|
||||||
|
|
||||||
/* Check to make sure we can safely check multiplication of surface w and pitch and it won't overflow Sint64 */
|
/* Check to make sure we can safely check multiplication of surface w and pitch and it won't overflow size_t */
|
||||||
SDL_COMPILE_TIME_ASSERT(surface_size_assumptions, sizeof(int) == sizeof(Sint32));
|
SDL_COMPILE_TIME_ASSERT(surface_size_assumptions,
|
||||||
|
sizeof(int) == sizeof(Sint32) && sizeof(size_t) >= sizeof(Sint32));
|
||||||
|
|
||||||
/* Public routines */
|
/* Public routines */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user