Fix a Copy-paste induced mistake (#3679)

This commit is contained in:
Martin Černáč 2016-05-20 10:49:08 +02:00 committed by Ted John
parent 9a09cb5dad
commit 4944fe1836
1 changed files with 1 additions and 1 deletions

View File

@ -5024,7 +5024,7 @@ static void window_ride_measurements_paint(rct_window *w, rct_drawpixelinfo *dpi
} else {
//sadly, STR_RIDE_LENGTH_ENTRY_WITH_SEPARATOR are defined with the separator AFTER an entry
//therefore we set the last entry to use the no-separator format now, post-format
set_format_arg(0 + ((numTimes - 1) * 4), uint16, STR_RIDE_LENGTH_ENTRY);
set_format_arg(0 + ((numLengths - 1) * 4), uint16, STR_RIDE_LENGTH_ENTRY);
}
RCT2_GLOBAL(0x013CE94E + (numLengths * 4), uint16) = STR_RIDE_LENGTH_ENTRY;
set_format_arg(0 + (numLengths * 4), uint16, 0);