From ac6eb650d9fadc3066e1af72b4afe2d127a1edec Mon Sep 17 00:00:00 2001
From: havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Date: Wed, 17 Jul 2013 04:00:01 +0000
Subject: [PATCH] we need to #include <SDL.h> before #include "quakedef.h"

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11969 d7cf8633-e32d-0410-b094-e92efae38249
---
 thread_sdl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/thread_sdl.c b/thread_sdl.c
index d7fd1737..4f58f71d 100644
--- 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)
 {
-- 
2.39.5