mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
Removed unnecessary SDL #include's
This commit is contained in:
parent
b9d83e88c9
commit
7d231c3008
3 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,6 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <mmsystem.h>
|
#include <mmsystem.h>
|
||||||
#else
|
#else
|
||||||
#include <SDL.h>
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <mmsystem.h>
|
#include <mmsystem.h>
|
||||||
#else
|
#else
|
||||||
#include <SDL.h>
|
|
||||||
#define FALSE 0
|
#define FALSE 0
|
||||||
#define TRUE 1
|
#define TRUE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -38,6 +38,8 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
// Returns a file name suitable for use as a temp file.
|
// Returns a file name suitable for use as a temp file.
|
||||||
// If you create a file with this name (and presumably you
|
// If you create a file with this name (and presumably you
|
||||||
// will), it will be deleted automatically by this class's
|
// will), it will be deleted automatically by this class's
|
||||||
|
|
Loading…
Reference in a new issue