From 4c01a1c6af8ed3687a4c0291a8a2cae2eb83bb0d Mon Sep 17 00:00:00 2001 From: frosch Date: Tue, 16 Dec 2008 20:15:36 +0000 Subject: [PATCH] (svn r14682) -Fix (r14672): Check the correct savegame version. (Thanks SmatZ) --- src/openttd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openttd.cpp b/src/openttd.cpp index 33ad8e5552..7a3a9cd18c 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 */