summaryrefslogtreecommitdiff
path: root/src/gamelog.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-07-24 15:19:26 +0000
committersmatz <smatz@openttd.org>2008-07-24 15:19:26 +0000
commitaae2aa64c4281583ea31d668d85301fe7996bd2e (patch)
tree881cc1be79243d58238de4eda1a24345c93a5735 /src/gamelog.h
parent9bee9948986c4c4905c53b6214311e2ddb6d6e8d (diff)
downloadopenttd-aae2aa64c4281583ea31d668d85301fe7996bd2e.tar.xz
(svn r13816) -Fix [FS#2150]: check for vehicle length changes outside a depot (callback 0x11) and give a warning about that
Diffstat (limited to 'src/gamelog.h')
-rw-r--r--src/gamelog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gamelog.h b/src/gamelog.h
index acf97c7ea..d2146d7a3 100644
--- a/src/gamelog.h
+++ b/src/gamelog.h
@@ -13,6 +13,7 @@ enum GamelogActionType {
GLAT_GRF, ///< GRF changed
GLAT_CHEAT, ///< Cheat was used
GLAT_PATCH, ///< Patches setting changed
+ GLAT_GRFBUG, ///< GRF bug was triggered
GLAT_END, ///< So we know how many GLATs are there
GLAT_NONE = 0xFF, ///< No logging active; in savegames, end of list
};
@@ -43,4 +44,6 @@ void GamelogTestRevision();
void GamelogTestMode();
void GamelogTestGRF();
+bool GamelogGRFBugReverse(uint32 grfid, uint16 internal_id);
+
#endif /* GAMELOG_H */