summaryrefslogtreecommitdiff
path: root/src/gamelog.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2008-06-06 19:27:09 +0000
committerglx <glx@openttd.org>2008-06-06 19:27:09 +0000
commit6d3f35af8f1d94b536e7d26cbc051d8229154759 (patch)
tree9294b0a30ae5861fa073a2fb0d06c3cd2eb85c4a /src/gamelog.cpp
parentb60a1326bf3ea9b9e0235cf18cdcd964c758a8bf (diff)
downloadopenttd-6d3f35af8f1d94b536e7d26cbc051d8229154759.tar.xz
(svn r13396) -Fix (r13375): assertion failing when changing grfs in game (compatible grfs)
Diffstat (limited to 'src/gamelog.cpp')
-rw-r--r--src/gamelog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gamelog.cpp b/src/gamelog.cpp
index e5518dbe8..aba915ea4 100644
--- a/src/gamelog.cpp
+++ b/src/gamelog.cpp
@@ -502,7 +502,7 @@ void GamelogGRFAdd(const GRFConfig *newg)
*/
void GamelogGRFCompatible(const GRFIdentifier *newg)
{
- assert(_gamelog_action_type == GLAT_LOAD);
+ assert(_gamelog_action_type == GLAT_LOAD || _gamelog_action_type == GLAT_GRF);
LoggedChange *lc = GamelogChange(GLCT_GRFCOMPAT);
if (lc == NULL) return;