diff options
author | rubidium <rubidium@openttd.org> | 2007-12-19 19:44:29 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-12-19 19:44:29 +0000 |
commit | 8896bea3064b6106b175585bd3098238c21a78a1 (patch) | |
tree | 1dade1883c85d5d6b12a252b91884e8e05409974 /src/video | |
parent | a9dafdff48fa8b47720a018819e6784a85870034 (diff) | |
download | openttd-8896bea3064b6106b175585bd3098238c21a78a1.tar.xz |
(svn r11667) -Codechange: split window.h into a header that defines some 'global' window related types, on that defined 'global' window functions and one that defines functions and types only used by *_gui.cpps.
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/dedicated_v.cpp | 1 | ||||
-rw-r--r-- | src/video/null_v.cpp | 1 | ||||
-rw-r--r-- | src/video/sdl_v.cpp | 2 | ||||
-rw-r--r-- | src/video/win32_v.cpp | 2 |
4 files changed, 0 insertions, 6 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp index 0d4afae5f..f2d2aecab 100644 --- a/src/video/dedicated_v.cpp +++ b/src/video/dedicated_v.cpp @@ -9,7 +9,6 @@ #include "../functions.h" #include "../gfx.h" #include "../network/network.h" -#include "../window.h" #include "../console.h" #include "../variables.h" #include "../genworld.h" diff --git a/src/video/null_v.cpp b/src/video/null_v.cpp index 81eed708c..2250cbaf0 100644 --- a/src/video/null_v.cpp +++ b/src/video/null_v.cpp @@ -4,7 +4,6 @@ #include "../openttd.h" #include "../gfx.h" #include "../variables.h" -#include "../window.h" #include "../debug.h" #include "../blitter/factory.hpp" #include "null_v.h" diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp index c0cd58ef6..e1130c3ae 100644 --- a/src/video/sdl_v.cpp +++ b/src/video/sdl_v.cpp @@ -10,8 +10,6 @@ #include "../gfx.h" #include "../macros.h" #include "../sdl.h" -#include "../window.h" -#include "../network/network.h" #include "../variables.h" #include "../blitter/factory.hpp" #include "sdl_v.h" diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index b742bbfd3..0b8305a0d 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -5,10 +5,8 @@ #include "../functions.h" #include "../gfx.h" #include "../macros.h" -#include "../network/network.h" #include "../variables.h" #include "../win32.h" -#include "../window.h" #include "../blitter/factory.hpp" #include "win32_v.h" #include <windows.h> |