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
 
@@ -373,13 +373,13 @@ bool Gamelog::TestEmergency()
 
 */
 
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));
 
}
 

	
 
/**
 
 * Logs a change in game mode (scenario editor or game)
 
 */
 
void Gamelog::Mode()
0 comments (0 inline, 0 general)