summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-12-16 20:15:36 +0000
committerfrosch <frosch@openttd.org>2008-12-16 20:15:36 +0000
commit4c01a1c6af8ed3687a4c0291a8a2cae2eb83bb0d (patch)
tree066173a50fa5acc2ed448f1e9ec5577bb6ebab24 /src/openttd.cpp
parentc62012ee91cfafd0550c250e15c85de5fa380593 (diff)
downloadopenttd-4c01a1c6af8ed3687a4c0291a8a2cae2eb83bb0d.tar.xz
(svn r14682) -Fix (r14672): Check the correct savegame version. (Thanks SmatZ)
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 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 */