From 668366bf6b9d2d5d026ea4116110615fdc8e4a23 Mon Sep 17 00:00:00 2001 From: spacek531 Date: Fri, 7 Jul 2017 01:56:15 -0700 Subject: [PATCH] Revert "upgrade save format from uint16 to uint32" This reverts commit 85757d9fefbacf8b7d07cec9cd9714e2f70f2faa. --- 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 3b8b077fee..7c349606ee 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, uint32, command->Milliseconds); + set_format_arg(0, uint16, command->Milliseconds); break; case TITLE_SCRIPT_RESTART: commandName = STR_TITLE_EDITOR_RESTART;