From 1ee72ffd21cdf1e96d13398db311d7161711ed5d Mon Sep 17 00:00:00 2001 From: Ted John Date: Sat, 27 Feb 2021 15:51:05 +0000 Subject: [PATCH] Fix #14184: Right and down arrow swapped Incorrect order of legacy shortcut IDs. --- src/openrct2-ui/input/ShortcutManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2-ui/input/ShortcutManager.cpp b/src/openrct2-ui/input/ShortcutManager.cpp index d2d24f71f6..364a2c3570 100644 --- a/src/openrct2-ui/input/ShortcutManager.cpp +++ b/src/openrct2-ui/input/ShortcutManager.cpp @@ -394,8 +394,8 @@ std::string_view ShortcutManager::GetLegacyShortcutId(size_t index) ShortcutId::InterfaceToggleToolbars, ShortcutId::ViewScrollUp, ShortcutId::ViewScrollLeft, - ShortcutId::ViewScrollRight, ShortcutId::ViewScrollDown, + ShortcutId::ViewScrollRight, ShortcutId::MultiplayerChat, ShortcutId::InterfaceSaveGame, ShortcutId::InterfaceShowOptions,