summaryrefslogtreecommitdiff
path: root/src/video
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-12-23 10:56:02 +0000
committerrubidium <rubidium@openttd.org>2007-12-23 10:56:02 +0000
commit507463e420317193b499c895496807f6e5b5da8f (patch)
tree38db428e795daef4055965543d541fc03dc4b9d8 /src/video
parenta3693160cf314d15d9359593fe239e04fe998159 (diff)
downloadopenttd-507463e420317193b499c895496807f6e5b5da8f.tar.xz
(svn r11684) -Codechange: split gfx.h in a type and functional header.
Diffstat (limited to 'src/video')
-rw-r--r--src/video/dedicated_v.cpp2
-rw-r--r--src/video/null_v.cpp2
-rw-r--r--src/video/sdl_v.cpp2
-rw-r--r--src/video/win32_v.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp
index f2d2aecab..70732bb73 100644
--- a/src/video/dedicated_v.cpp
+++ b/src/video/dedicated_v.cpp
@@ -7,7 +7,7 @@
#include "../openttd.h"
#include "../debug.h"
#include "../functions.h"
-#include "../gfx.h"
+#include "../gfx_func.h"
#include "../network/network.h"
#include "../console.h"
#include "../variables.h"
diff --git a/src/video/null_v.cpp b/src/video/null_v.cpp
index 2250cbaf0..7d2fa512d 100644
--- a/src/video/null_v.cpp
+++ b/src/video/null_v.cpp
@@ -2,7 +2,7 @@
#include "../stdafx.h"
#include "../openttd.h"
-#include "../gfx.h"
+#include "../gfx_func.h"
#include "../variables.h"
#include "../debug.h"
#include "../blitter/factory.hpp"
diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp
index 9d4a7986a..05fb771b7 100644
--- a/src/video/sdl_v.cpp
+++ b/src/video/sdl_v.cpp
@@ -7,7 +7,7 @@
#include "../openttd.h"
#include "../debug.h"
#include "../functions.h"
-#include "../gfx.h"
+#include "../gfx_func.h"
#include "../sdl.h"
#include "../variables.h"
#include "../blitter/factory.hpp"
diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp
index 1fc344fac..d3d80daee 100644
--- a/src/video/win32_v.cpp
+++ b/src/video/win32_v.cpp
@@ -3,7 +3,7 @@
#include "../stdafx.h"
#include "../openttd.h"
#include "../functions.h"
-#include "../gfx.h"
+#include "../gfx_func.h"
#include "../variables.h"
#include "../win32.h"
#include "../blitter/factory.hpp"