summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/d_dedicated.c1
-rw-r--r--src/i_main.c2
-rw-r--r--src/i_sound.c2
-rw-r--r--src/i_system.c2
-rw-r--r--src/i_timer.c2
-rw-r--r--src/i_video.c2
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>