From 78ab94b12ab8184dd6e2cefddc0dd61c0a7b2b97 Mon Sep 17 00:00:00 2001 From: spacek531 Date: Fri, 7 Jul 2017 01:44:24 -0700 Subject: [PATCH] upgrade save format from uint16 to uint32 --- src/openrct2/windows/title_editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/windows/title_editor.c b/src/openrct2/windows/title_editor.c index 7c349606ee..3b8b077fee 100644 --- a/src/openrct2/windows/title_editor.c +++ b/src/openrct2/windows/title_editor.c @@ -891,7 +891,7 @@ static void window_title_editor_scrollpaint_commands(rct_window *w, rct_drawpixe break; case TITLE_SCRIPT_WAIT: commandName = STR_TITLE_EDITOR_COMMAND_WAIT; - set_format_arg(0, uint16, command->Milliseconds); + set_format_arg(0, uint32, command->Milliseconds); break; case TITLE_SCRIPT_RESTART: commandName = STR_TITLE_EDITOR_RESTART;