diff options
author | Simon Howard | 2006-12-24 16:32:47 +0000 |
---|---|---|
committer | Simon Howard | 2006-12-24 16:32:47 +0000 |
commit | fd1d07746f16e03cb7f07c0b57a8b373d0e144e9 (patch) | |
tree | 8dd38090a4f57511717675357329b7d45dc19f26 | |
parent | 7dd79945d3717b2c2bd901198b1bb935d8513483 (diff) | |
download | chocolate-doom-fd1d07746f16e03cb7f07c0b57a8b373d0e144e9.tar.gz chocolate-doom-fd1d07746f16e03cb7f07c0b57a8b373d0e144e9.tar.bz2 chocolate-doom-fd1d07746f16e03cb7f07c0b57a8b373d0e144e9.zip |
Include "SDL.h", not <SDL.h>, as per http://www.libsdl.org/faq.php
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 805
-rw-r--r-- | src/d_dedicated.c | 1 | ||||
-rw-r--r-- | src/i_main.c | 2 | ||||
-rw-r--r-- | src/i_sound.c | 2 | ||||
-rw-r--r-- | src/i_system.c | 2 | ||||
-rw-r--r-- | src/i_timer.c | 2 | ||||
-rw-r--r-- | 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> |