shithub: choc

Download patch

ref: fd1d07746f16e03cb7f07c0b57a8b373d0e144e9
parent: 7dd79945d3717b2c2bd901198b1bb935d8513483
author: Simon Howard <fraggle@gmail.com>
date: Sun Dec 24 11:32:47 EST 2006

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

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 805

--- 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>
 
--- a/src/i_main.c
+++ b/src/i_main.c
@@ -25,7 +25,7 @@
 //-----------------------------------------------------------------------------
 
 
-#include <SDL.h>
+#include "SDL.h"
 
 #include <signal.h>
 
--- 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
--- 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"
--- a/src/i_timer.c
+++ b/src/i_timer.c
@@ -24,7 +24,7 @@
 //
 //-----------------------------------------------------------------------------
 
-#include <SDL.h>
+#include "SDL.h"
 
 #include "i_timer.h"
 
--- 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>