diff options
author | rubidium <rubidium@openttd.org> | 2011-02-07 22:49:38 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-02-07 22:49:38 +0000 |
commit | 1d0d7635e08056acf0d0243b0b5ea5f39a5953e3 (patch) | |
tree | 10b8cfa452323649cf4654f5034c6145c5a24915 /src/video | |
parent | a06b34bd4ff3d43d37270d8807486aa7cf242b66 (diff) | |
download | openttd-1d0d7635e08056acf0d0243b0b5ea5f39a5953e3.tar.xz |
(svn r22021) -Fix (r22019): ofcourse make doesn't notice files are gone, so it doesn't recompile everything that needs to be recompiled...
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/allegro_v.cpp | 2 | ||||
-rw-r--r-- | src/video/cocoa/cocoa_v.mm | 1 | ||||
-rw-r--r-- | src/video/cocoa/wnd_quartz.mm | 1 | ||||
-rw-r--r-- | src/video/cocoa/wnd_quickdraw.mm | 1 | ||||
-rw-r--r-- | src/video/sdl_v.cpp | 2 | ||||
-rw-r--r-- | src/video/win32_v.cpp | 1 |
6 files changed, 2 insertions, 6 deletions
diff --git a/src/video/allegro_v.cpp b/src/video/allegro_v.cpp index bcec85333..68bc6880f 100644 --- a/src/video/allegro_v.cpp +++ b/src/video/allegro_v.cpp @@ -23,7 +23,7 @@ #include "../blitter/factory.hpp" #include "../network/network.h" #include "../core/random_func.hpp" -#include "../functions.h" +#include "../core/math_func.hpp" #include "allegro_v.h" #include <allegro.h> diff --git a/src/video/cocoa/cocoa_v.mm b/src/video/cocoa/cocoa_v.mm index 8a063973e..b55e6ee02 100644 --- a/src/video/cocoa/cocoa_v.mm +++ b/src/video/cocoa/cocoa_v.mm @@ -31,7 +31,6 @@ #include "../../blitter/factory.hpp" #include "../../fileio_func.h" #include "../../gfx_func.h" -#include "../../functions.h" #import <sys/param.h> /* for MAXPATHLEN */ diff --git a/src/video/cocoa/wnd_quartz.mm b/src/video/cocoa/wnd_quartz.mm index 3370c560d..0f2b4b0ad 100644 --- a/src/video/cocoa/wnd_quartz.mm +++ b/src/video/cocoa/wnd_quartz.mm @@ -33,7 +33,6 @@ #include "cocoa_v.h" #include "../../core/math_func.hpp" #include "../../gfx_func.h" -#include "../../functions.h" /** * Important notice regarding all modifications!!!!!!! diff --git a/src/video/cocoa/wnd_quickdraw.mm b/src/video/cocoa/wnd_quickdraw.mm index be07646ce..849aae1bb 100644 --- a/src/video/cocoa/wnd_quickdraw.mm +++ b/src/video/cocoa/wnd_quickdraw.mm @@ -32,7 +32,6 @@ #include "cocoa_v.h" #include "../../core/math_func.hpp" #include "../../gfx_func.h" -#include "../../functions.h" /** * Important notice regarding all modifications!!!!!!! diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp index f16ca69d7..d53ebc5b3 100644 --- a/src/video/sdl_v.cpp +++ b/src/video/sdl_v.cpp @@ -18,10 +18,10 @@ #include "../rev.h" #include "../blitter/factory.hpp" #include "../network/network.h" -#include "../functions.h" #include "../thread/thread.h" #include "../genworld.h" #include "../core/random_func.hpp" +#include "../core/math_func.hpp" #include "sdl_v.h" #include <SDL.h> diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index f411dcdce..1230eeea2 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -18,7 +18,6 @@ #include "../network/network.h" #include "../core/math_func.hpp" #include "../core/random_func.hpp" -#include "../functions.h" #include "../texteff.hpp" #include "win32_v.h" #include <windows.h> |