summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-07-18 12:11:46 +0000
committersmatz <smatz@openttd.org>2008-07-18 12:11:46 +0000
commit927507818fa96f341b30d5dd4229261ca476d437 (patch)
treefd97455e5c3dfbe3674411dd9562d66e1acecdd3 /src/openttd.cpp
parent69cb2f088feb3549c63ddb747ee11c781b49e86c (diff)
downloadopenttd-927507818fa96f341b30d5dd4229261ca476d437.tar.xz
(svn r13727) -Fix (r13375): compilation with NO_DEBUG_MESSAGES was broken
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index 540fdb0cf..9e0b7387c 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -2455,7 +2455,7 @@ bool AfterLoadGame()
}
}
- if (_debug_gamelog_level > 0) GamelogPrintDebug();
+ GamelogPrintDebug(1);
return InitializeWindowsAndCaches();
}