summaryrefslogtreecommitdiff
path: root/src/net
diff options
context:
space:
mode:
Diffstat (limited to 'src/net')
-rw-r--r--src/net/download.cpp4
-rw-r--r--src/net/download.h2
-rw-r--r--src/net/ea/network.h2
-rw-r--r--src/net/eathena/messagehandler.h2
-rw-r--r--src/net/eathena/messagein.cpp4
-rw-r--r--src/net/eathena/messagein.h2
-rw-r--r--src/net/eathena/messageout.cpp4
-rw-r--r--src/net/eathena/messageout.h2
-rw-r--r--src/net/messagehandler.h2
-rw-r--r--src/net/messagein.h2
-rw-r--r--src/net/messageout.h2
-rw-r--r--src/net/sdltcpnet.h2
-rw-r--r--src/net/serverinfo.h2
-rw-r--r--src/net/tmwa/messagehandler.h2
-rw-r--r--src/net/tmwa/messagein.cpp4
-rw-r--r--src/net/tmwa/messagein.h2
-rw-r--r--src/net/tmwa/messageout.cpp4
-rw-r--r--src/net/tmwa/messageout.h2
18 files changed, 23 insertions, 23 deletions
diff --git a/src/net/download.cpp b/src/net/download.cpp
index 9a47aa4cf..a8f0e1c0c 100644
--- a/src/net/download.cpp
+++ b/src/net/download.cpp
@@ -28,8 +28,8 @@
#include <curl/curl.h>
-#include <SDL/SDL.h>
-#include <SDL/SDL_thread.h>
+#include <SDL.h>
+#include <SDL_thread.h>
#include <zlib.h>
diff --git a/src/net/download.h b/src/net/download.h
index 9e52b190f..d0025c2b3 100644
--- a/src/net/download.h
+++ b/src/net/download.h
@@ -23,7 +23,7 @@
#ifndef NET_DOWNLOAD_H
#define NET_DOWNLOAD_H
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <stdio.h>
#include <string>
diff --git a/src/net/ea/network.h b/src/net/ea/network.h
index 1c7f3a8e6..2f8a1c0d1 100644
--- a/src/net/ea/network.h
+++ b/src/net/ea/network.h
@@ -30,7 +30,7 @@
#include "net/sdltcpnet.h"
-#include <SDL/SDL_thread.h>
+#include <SDL_thread.h>
#include <map>
#include <string>
diff --git a/src/net/eathena/messagehandler.h b/src/net/eathena/messagehandler.h
index 314a1ab28..aafac96ea 100644
--- a/src/net/eathena/messagehandler.h
+++ b/src/net/eathena/messagehandler.h
@@ -27,7 +27,7 @@
#include "net/eathena/messageout.h"
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <memory>
diff --git a/src/net/eathena/messagein.cpp b/src/net/eathena/messagein.cpp
index 953dac4d2..1acbd4665 100644
--- a/src/net/eathena/messagein.cpp
+++ b/src/net/eathena/messagein.cpp
@@ -28,8 +28,8 @@
#include "utils/stringutils.h"
-#include <SDL/SDL.h>
-#include <SDL/SDL_endian.h>
+#include <SDL.h>
+#include <SDL_endian.h>
#include "debug.h"
diff --git a/src/net/eathena/messagein.h b/src/net/eathena/messagein.h
index b80ba40df..49f8a36f1 100644
--- a/src/net/eathena/messagein.h
+++ b/src/net/eathena/messagein.h
@@ -25,7 +25,7 @@
#include "net/messagein.h"
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <string>
#include "localconsts.h"
diff --git a/src/net/eathena/messageout.cpp b/src/net/eathena/messageout.cpp
index 8772ac3a0..6dc2e00f4 100644
--- a/src/net/eathena/messageout.cpp
+++ b/src/net/eathena/messageout.cpp
@@ -28,8 +28,8 @@
#include "logger.h"
-#include <SDL/SDL.h>
-#include <SDL/SDL_endian.h>
+#include <SDL.h>
+#include <SDL_endian.h>
#include <cstring>
#include <string>
diff --git a/src/net/eathena/messageout.h b/src/net/eathena/messageout.h
index 0a470faf8..0e8364131 100644
--- a/src/net/eathena/messageout.h
+++ b/src/net/eathena/messageout.h
@@ -26,7 +26,7 @@
#include "net/messageout.h"
#include <iosfwd>
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include "localconsts.h"
diff --git a/src/net/messagehandler.h b/src/net/messagehandler.h
index 9b732bb99..c438ed679 100644
--- a/src/net/messagehandler.h
+++ b/src/net/messagehandler.h
@@ -25,7 +25,7 @@
#include "net/messagein.h"
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <memory>
diff --git a/src/net/messagein.h b/src/net/messagein.h
index c41227ab4..3ed723360 100644
--- a/src/net/messagein.h
+++ b/src/net/messagein.h
@@ -23,7 +23,7 @@
#ifndef NET_MESSAGEIN_H
#define NET_MESSAGEIN_H
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <string>
diff --git a/src/net/messageout.h b/src/net/messageout.h
index 2cf27f72e..f4b32191b 100644
--- a/src/net/messageout.h
+++ b/src/net/messageout.h
@@ -23,7 +23,7 @@
#ifndef NET_MESSAGEOUT_H
#define NET_MESSAGEOUT_H
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <iosfwd>
#include <string>
diff --git a/src/net/sdltcpnet.h b/src/net/sdltcpnet.h
index 22273b447..1d83b04fc 100644
--- a/src/net/sdltcpnet.h
+++ b/src/net/sdltcpnet.h
@@ -21,7 +21,7 @@
#ifndef NET_SDLTCPNET_H
#define NET_SDLTCPNET_H
-#include <SDL/SDL_net.h>
+#include <SDL_net.h>
#include <string>
diff --git a/src/net/serverinfo.h b/src/net/serverinfo.h
index c678fef39..515595f1f 100644
--- a/src/net/serverinfo.h
+++ b/src/net/serverinfo.h
@@ -25,7 +25,7 @@
#include "utils/stringutils.h"
-#include <SDL/SDL_stdinc.h>
+#include <SDL_stdinc.h>
#include <string>
#include <vector>
diff --git a/src/net/tmwa/messagehandler.h b/src/net/tmwa/messagehandler.h
index daa1ed082..5afe28bff 100644
--- a/src/net/tmwa/messagehandler.h
+++ b/src/net/tmwa/messagehandler.h
@@ -27,7 +27,7 @@
#include "net/tmwa/messageout.h"
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <memory>
diff --git a/src/net/tmwa/messagein.cpp b/src/net/tmwa/messagein.cpp
index f4974ad03..67cacf504 100644
--- a/src/net/tmwa/messagein.cpp
+++ b/src/net/tmwa/messagein.cpp
@@ -28,8 +28,8 @@
#include "utils/stringutils.h"
-#include <SDL/SDL.h>
-#include <SDL/SDL_endian.h>
+#include <SDL.h>
+#include <SDL_endian.h>
#include "debug.h"
diff --git a/src/net/tmwa/messagein.h b/src/net/tmwa/messagein.h
index 038252a4c..75e85b044 100644
--- a/src/net/tmwa/messagein.h
+++ b/src/net/tmwa/messagein.h
@@ -25,7 +25,7 @@
#include "net/messagein.h"
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include <string>
#include "localconsts.h"
diff --git a/src/net/tmwa/messageout.cpp b/src/net/tmwa/messageout.cpp
index edee92a68..2fc0ff2d9 100644
--- a/src/net/tmwa/messageout.cpp
+++ b/src/net/tmwa/messageout.cpp
@@ -28,8 +28,8 @@
#include "logger.h"
-#include <SDL/SDL.h>
-#include <SDL/SDL_endian.h>
+#include <SDL.h>
+#include <SDL_endian.h>
#include <cstring>
#include <string>
diff --git a/src/net/tmwa/messageout.h b/src/net/tmwa/messageout.h
index 7e8bd13d5..1d7b76800 100644
--- a/src/net/tmwa/messageout.h
+++ b/src/net/tmwa/messageout.h
@@ -26,7 +26,7 @@
#include "net/messageout.h"
#include <iosfwd>
-#include <SDL/SDL_types.h>
+#include <SDL_types.h>
#include "localconsts.h"