mirror of https://github.com/OpenTTD/OpenTTD
Fix #10961, 52a7c69: incorrect order of parameters to gamelog revision constructor
parent
a47de4b2ab
commit
617cacd542
|
@ -376,7 +376,7 @@ void Gamelog::Revision()
|
||||||
assert(this->action_type == GLAT_START || this->action_type == GLAT_LOAD);
|
assert(this->action_type == GLAT_START || this->action_type == GLAT_LOAD);
|
||||||
|
|
||||||
this->Change(std::make_unique<LoggedChangeRevision>(
|
this->Change(std::make_unique<LoggedChangeRevision>(
|
||||||
GetGamelogRevisionString(), SAVEGAME_VERSION, _openttd_revision_modified, _openttd_newgrf_version));
|
GetGamelogRevisionString(), _openttd_newgrf_version, SAVEGAME_VERSION, _openttd_revision_modified));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue