summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/openttd.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index afbe2628a..a06b0137c 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -363,10 +363,12 @@ static void LoadIntroGame()
if (SaveOrLoad("opntitle.dat", SL_LOAD, DATA_DIR) != SL_OK) {
GenerateWorld(GW_EMPTY, 64, 64); // if failed loading, make empty world.
WaitTillGeneratedWorld();
+ SetLocalPlayer(PLAYER_SPECTATOR);
+ } else {
+ SetLocalPlayer(PLAYER_FIRST);
}
_pause_game = 0;
- SetLocalPlayer(PLAYER_FIRST);
_cursor.fix_at = false;
MarkWholeScreenDirty();