(svn r16414) -Change: Make it harder to ignore/close important error messages. Esp. do not close them automatically after some time.

This commit is contained in:
frosch
2009-05-24 12:50:58 +00:00
parent bc9c2e43fe
commit 8109a74c95
5 changed files with 25 additions and 12 deletions

View File

@@ -121,7 +121,7 @@ void ShowNewGrfVehicleError(EngineID engine, StringID part1, StringID part2, GRF
SetBit(grfconfig->grf_bugs, bug_type);
SetDParamStr(0, grfconfig->name);
SetDParam(1, engine);
ShowErrorMessage(part2, part1, 0, 0);
ShowErrorMessage(part2, part1, 0, 0, true);
if (!_networking) DoCommand(0, critical ? PM_PAUSED_ERROR : PM_PAUSED_NORMAL, 1, DC_EXEC, CMD_PAUSE);
}