From 617cacd54220050249391e62899f8a49785c98c2 Mon Sep 17 00:00:00 2001 From: Rubidium Date: Tue, 6 Jun 2023 19:30:37 +0200 Subject: [PATCH] Fix #10961, 52a7c69: incorrect order of parameters to gamelog revision constructor --- src/gamelog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamelog.cpp b/src/gamelog.cpp index 461e0ab3a5..cf0fe4e3b6 100644 --- a/src/gamelog.cpp +++ b/src/gamelog.cpp @@ -376,7 +376,7 @@ void Gamelog::Revision() assert(this->action_type == GLAT_START || this->action_type == GLAT_LOAD); this->Change(std::make_unique( - GetGamelogRevisionString(), SAVEGAME_VERSION, _openttd_revision_modified, _openttd_newgrf_version)); + GetGamelogRevisionString(), _openttd_newgrf_version, SAVEGAME_VERSION, _openttd_revision_modified)); } /**