projects
/
xonotic
/
darkplaces.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c2e33b
)
we need to #include <SDL.h> before #include "quakedef.h"
author
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 17 Jul 2013 04:00:01 +0000
(
04:00
+0000)
committer
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 17 Jul 2013 04:00:01 +0000
(
04:00
+0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11969
d7cf8633
-e32d-0410-b094-
e92efae38249
thread_sdl.c
patch
|
blob
|
history
diff --git
a/thread_sdl.c
b/thread_sdl.c
index d7fd1737358449bb1f587cb76e6a769ca88be847..4f58f71d386f95863d6a6752cee0ea133f91776d 100644
(file)
--- a/
thread_sdl.c
+++ b/
thread_sdl.c
@@
-1,7
+1,7
@@
-#include "quakedef.h"
-#include "thread.h"
#include <SDL.h>
#include <SDL_thread.h>
+#include "quakedef.h"
+#include "thread.h"
int Thread_Init(void)
{