summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-05-24 12:50:58 +0000
committerfrosch <frosch@openttd.org>2009-05-24 12:50:58 +0000
commit8109a74c95c0b6882c681ee012c57bf503c7b602 (patch)
treeb0469f41564337b19ec68fc80a0f3f19e8aa3664 /src/openttd.cpp
parentbc9c2e43fe439bea31ea2a76c53d7fb16b1aa148 (diff)
downloadopenttd-8109a74c95c0b6882c681ee012c57bf503c7b602.tar.xz
(svn r16414) -Change: Make it harder to ignore/close important error messages. Esp. do not close them automatically after some time.
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 0758bf29b..a357d9803 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -1031,7 +1031,7 @@ void SwitchToMode(SwitchMode new_mode)
}
if (_switch_mode_errorstr != INVALID_STRING_ID) {
- ShowErrorMessage(INVALID_STRING_ID, _switch_mode_errorstr, 0, 0);
+ ShowErrorMessage(INVALID_STRING_ID, _switch_mode_errorstr, 0, 0, true);
}
}