foxygit / doom Log in
commit fd1d07746f16e03cb7f07c0b57a8b373d0e144e9
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Sun Dec 24 16:32:47 2006 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Sun Dec 24 16:32:47 2006 +0000

    Include "SDL.h", not <SDL.h>, as per http://www.libsdl.org/faq.php

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 805
---
 src/d_dedicated.c | 1 -
 src/i_main.c      | 2 +-
 src/i_sound.c     | 2 +-
 src/i_system.c    | 2 +-
 src/i_timer.c     | 2 +-
 src/i_video.c     | 2 +-
 6 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/d_dedicated.c b/src/d_dedicated.c
index bdf1e30a..100c9b22 100644
--- a/src/d_dedicated.c
+++ b/src/d_dedicated.c
@@ -21,7 +21,6 @@
 // Code specific to the standalone dedicated server.
 //

-#include <SDL.h>
 #include <stdlib.h>
 #include <stdarg.h>

diff --git a/src/i_main.c b/src/i_main.c
index e3e23428..9da06442 100644
--- a/src/i_main.c
+++ b/src/i_main.c
@@ -25,7 +25,7 @@
 //-----------------------------------------------------------------------------


-#include <SDL.h>
+#include "SDL.h"

 #include <signal.h>

diff --git a/src/i_sound.c b/src/i_sound.c
index 165be416..fbf5768c 100644
--- a/src/i_sound.c
+++ b/src/i_sound.c
@@ -27,7 +27,7 @@

 #include <stdio.h>
 #include <stdlib.h>
-#include <SDL.h>
+#include "SDL.h"
 #include <SDL_mixer.h>

 #ifndef _WIN32
diff --git a/src/i_system.c b/src/i_system.c
index 4f1bdac3..3107465d 100644
--- a/src/i_system.c
+++ b/src/i_system.c
@@ -30,7 +30,7 @@
 #include <string.h>

 #include <stdarg.h>
-#include <SDL.h>
+#include "SDL.h"

 #include "deh_main.h"
 #include "doomdef.h"
diff --git a/src/i_timer.c b/src/i_timer.c
index 167b5c22..c1607e62 100644
--- a/src/i_timer.c
+++ b/src/i_timer.c
@@ -24,7 +24,7 @@
 //
 //-----------------------------------------------------------------------------

-#include <SDL.h>
+#include "SDL.h"

 #include "i_timer.h"

diff --git a/src/i_video.c b/src/i_video.c
index e2b12ed4..eaa4bc38 100644
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -25,7 +25,7 @@
 //-----------------------------------------------------------------------------


-#include <SDL.h>
+#include "SDL.h"
 #include <stdlib.h>
 #include <ctype.h>
 #include <math.h>