diff options
author | frosch <frosch@openttd.org> | 2008-12-16 20:15:36 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-12-16 20:15:36 +0000 |
commit | b177c5fd9e41d75a44fad47a8572fef93e29c9a0 (patch) | |
tree | 066173a50fa5acc2ed448f1e9ec5577bb6ebab24 | |
parent | 014eb8fcf9a844a8c7ea8321c129381d9eb7509f (diff) | |
download | openttd-b177c5fd9e41d75a44fad47a8572fef93e29c9a0.tar.xz |
(svn r14682) -Fix (r14672): Check the correct savegame version. (Thanks SmatZ)
-rw-r--r-- | src/openttd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp index 33ad8e555..7a3a9cd18 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -2593,7 +2593,7 @@ bool AfterLoadGame() } } - if (CheckSavegameVersion(103)) { + if (CheckSavegameVersion(104)) { Vehicle *v; FOR_ALL_VEHICLES(v) { /* Set engine_type of shadow and rotor */ |