mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-22 03:41:19 +00:00
Add missing SDL2.h header.
This commit is contained in:
parent
60b444834e
commit
6129e902b0
1 changed files with 6 additions and 1 deletions
|
@ -18,7 +18,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
// r_misc.c
|
// r_misc.c
|
||||||
#include "SDL.h"
|
#ifdef SDL2
|
||||||
|
#include <SDL2/SDL.h>
|
||||||
|
#else // SDL1.2
|
||||||
|
#include <SDL/SDL.h>
|
||||||
|
#endif //SDL2
|
||||||
|
|
||||||
#include "r_local.h"
|
#include "r_local.h"
|
||||||
|
|
||||||
#define NUM_MIPS 4
|
#define NUM_MIPS 4
|
||||||
|
|
Loading…
Reference in a new issue