From c73e17f02b498adaf5f7c90651fce0a06e8d0dd4 Mon Sep 17 00:00:00 2001 From: spacek531 Date: Fri, 7 Jul 2017 08:06:58 -0700 Subject: [PATCH] move the zoom case up to handle it as it was --- src/openrct2/windows/title_command_editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/windows/title_command_editor.c b/src/openrct2/windows/title_command_editor.c index bcd2c5e4f1..46be1acd0b 100644 --- a/src/openrct2/windows/title_command_editor.c +++ b/src/openrct2/windows/title_command_editor.c @@ -242,9 +242,9 @@ void window_title_command_editor_open(TitleSequence * sequence, sint32 index, bo snprintf(textbox2Buffer, BUF_SIZE, "%d", command.Y); break; case TITLE_SCRIPT_ROTATE: + case TITLE_SCRIPT_ZOOM: snprintf(textbox1Buffer, BUF_SIZE, "%d", command.Rotations); break; - case TITLE_SCRIPT_ZOOM: case TITLE_SCRIPT_WAIT: snprintf(textbox1Buffer, BUF_SIZE, "%d", command.Milliseconds); break;