this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix a warning about M_PI already being defined

authored by

Albert Vaca Cintora and committed by
GitHub
49ff4495 3dad6455

+3
+3
include/SDL_gpu.h
··· 1 1 #ifndef _SDL_GPU_H__ 2 2 #define _SDL_GPU_H__ 3 3 4 + #define _USE_MATH_DEFINES // So M_PI and company get defined on MSVC when we include math.h 5 + #include <math.h> // Must be included before SDL.h, otherwise both try to define M_PI and we get a warning 6 + 4 7 #include "SDL.h" 5 8 #include <stdio.h> 6 9 #include <stdarg.h>