forked from mirror/OpenTTD
(svn r3173) Use the trinary operator and switch to improve readability
Also align short cases nicely
This commit is contained in:
11
openttd.c
11
openttd.c
@@ -707,12 +707,11 @@ bool SafeSaveOrLoad(const char *filename, int mode, int newgm)
|
||||
_game_mode = newgm;
|
||||
r = SaveOrLoad(filename, mode);
|
||||
if (r == SL_REINIT) {
|
||||
if (ogm == GM_MENU)
|
||||
LoadIntroGame();
|
||||
else if (ogm == GM_EDITOR)
|
||||
MakeNewEditorWorld();
|
||||
else
|
||||
MakeNewGame();
|
||||
switch (ogm) {
|
||||
case GM_MENU: LoadIntroGame(); break;
|
||||
case GM_EDITOR: MakeNewEditorWorld(); break;
|
||||
default: MakeNewGame(); break;
|
||||
}
|
||||
return false;
|
||||
} else if (r != SL_OK) {
|
||||
_game_mode = ogm;
|
||||
|
Reference in New Issue
Block a user