Mercurial > hg > openttd
changeset 8225:0e48dd14a0d8 draft
(svn r11788) -Fix (11787): makedepend doesn't mark delete files as changed...
author | rubidium <rubidium@openttd.org> |
---|---|
date | Wed, 09 Jan 2008 09:57:48 +0000 |
parents | c45446125bf0 |
children | 8bef722f6199 |
files | src/console_cmds.cpp src/dummy_land.cpp src/engine.cpp src/genworld.cpp src/industry_cmd.cpp src/landscape.cpp src/newgrf_house.cpp src/newgrf_industrytiles.cpp src/screenshot.cpp src/signs.cpp src/station.cpp src/station_cmd.cpp src/texteff.cpp src/tree_cmd.cpp src/viewport_func.h src/viewport_type.h src/waypoint.cpp |
diffstat | 17 files changed, 19 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -23,7 +23,7 @@ #include "genworld.h" #include "network/network.h" #include "strings_func.h" -#include "viewport.h" +#include "viewport_func.h" #include "window_func.h" #include "functions.h" #include "map_func.h"
--- a/src/dummy_land.cpp +++ b/src/dummy_land.cpp @@ -8,7 +8,7 @@ #include "tile_cmd.h" #include "command_func.h" #include "table/sprites.h" -#include "viewport.h" +#include "viewport_func.h" static void DrawTile_Dummy(TileInfo *ti) {
--- a/src/engine.cpp +++ b/src/engine.cpp @@ -19,7 +19,7 @@ #include "group.h" #include "misc/autoptr.hpp" #include "strings_func.h" -#include "viewport.h" +#include "gfx_func.h" #include "functions.h" #include "window_func.h" #include "date_func.h"
--- a/src/genworld.cpp +++ b/src/genworld.cpp @@ -17,7 +17,8 @@ #include "debug.h" #include "settings_func.h" #include "heightmap.h" -#include "viewport.h" +#include "viewport_func.h" +#include "gfx_func.h" #include "map_func.h" #include "date_func.h" #include "core/random_func.hpp"
--- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -11,7 +11,7 @@ #include "table/sprites.h" #include "train.h" #include "landscape.h" -#include "viewport.h" +#include "viewport_func.h" #include "command_func.h" #include "industry.h" #include "town.h"
--- a/src/landscape.cpp +++ b/src/landscape.cpp @@ -9,7 +9,7 @@ #include "spritecache.h" #include "table/sprites.h" #include <stdarg.h> -#include "viewport.h" +#include "viewport_func.h" #include "command_func.h" #include "landscape.h" #include "variables.h"
--- a/src/newgrf_house.cpp +++ b/src/newgrf_house.cpp @@ -6,7 +6,7 @@ #include "openttd.h" #include "variables.h" #include "debug.h" -#include "viewport.h" +#include "viewport_func.h" #include "landscape.h" #include "town.h" #include "town_map.h"
--- a/src/newgrf_industrytiles.cpp +++ b/src/newgrf_industrytiles.cpp @@ -6,7 +6,7 @@ #include "openttd.h" #include "variables.h" #include "debug.h" -#include "viewport.h" +#include "viewport_func.h" #include "landscape.h" #include "newgrf.h" #include "industry.h"
--- a/src/screenshot.cpp +++ b/src/screenshot.cpp @@ -5,7 +5,8 @@ #include "debug.h" #include "table/strings.h" #include "fileio.h" -#include "viewport.h" +#include "viewport_func.h" +#include "gfx_func.h" #include "player.h" #include "screenshot.h" #include "variables.h"
--- a/src/signs.cpp +++ b/src/signs.cpp @@ -13,7 +13,7 @@ #include "variables.h" #include "misc/autoptr.hpp" #include "strings_func.h" -#include "viewport.h" +#include "viewport_func.h" #include "zoom_func.h" #include "functions.h" #include "window_func.h"
--- a/src/station.cpp +++ b/src/station.cpp @@ -10,7 +10,6 @@ #include "table/sprites.h" #include "table/strings.h" #include "station.h" -#include "viewport.h" #include "town.h" #include "news.h" #include "saveload.h"
--- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -14,7 +14,7 @@ #include "table/sprites.h" #include "table/strings.h" #include "station.h" -#include "viewport.h" +#include "viewport_func.h" #include "command_func.h" #include "town.h" #include "news.h"
--- a/src/texteff.cpp +++ b/src/texteff.cpp @@ -6,7 +6,7 @@ #include "openttd.h" #include "tile_cmd.h" #include "landscape.h" -#include "viewport.h" +#include "gfx_func.h" #include "saveload.h" #include "console.h" #include "variables.h" @@ -20,6 +20,7 @@ #include "core/alloc_func.hpp" #include "date_func.h" #include "functions.h" +#include "viewport_func.h" enum { MAX_TEXTMESSAGE_LENGTH = 200,
--- a/src/tree_cmd.cpp +++ b/src/tree_cmd.cpp @@ -12,7 +12,7 @@ #include "tile_cmd.h" #include "landscape.h" #include "tree_map.h" -#include "viewport.h" +#include "viewport_func.h" #include "command_func.h" #include "economy_func.h" #include "town.h"
--- a/src/viewport_func.h +++ b/src/viewport_func.h @@ -5,6 +5,7 @@ #ifndef VIEWPORT_FUNC_H #define VIEWPORT_FUNC_H +#include "gfx_type.h" #include "viewport_type.h" #include "vehicle_type.h"