Changeset - r27538:42e6c4694ae8
[Not reviewed]
master
0 1 0
Rubidium - 15 months ago 2023-06-06 17:30:37
rubidium@openttd.org
Fix #10961, 52a7c69: incorrect order of parameters to gamelog revision constructor
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/gamelog.cpp
Show inline comments
 
@@ -376,7 +376,7 @@ void Gamelog::Revision()
 
	assert(this->action_type == GLAT_START || this->action_type == GLAT_LOAD);
 

	
 
	this->Change(std::make_unique<LoggedChangeRevision>(
 
		GetGamelogRevisionString(), SAVEGAME_VERSION, _openttd_revision_modified, _openttd_newgrf_version));
 
		GetGamelogRevisionString(), _openttd_newgrf_version, SAVEGAME_VERSION, _openttd_revision_modified));
 
}
 

	
 
/**
0 comments (0 inline, 0 general)