1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +01:00

Rename members of ShortcutManager

This commit is contained in:
Gymnasiast
2025-09-30 23:05:23 +02:00
parent b86fc3715b
commit 61c3b3fc86
8 changed files with 165 additions and 165 deletions

View File

@@ -621,7 +621,7 @@ public:
std::string GetKeyboardShortcutString(std::string_view shortcutId) override
{
auto& shortcutManager = GetShortcutManager();
auto* shortcut = shortcutManager.GetShortcut(shortcutId);
auto* shortcut = shortcutManager.getShortcut(shortcutId);
return shortcut != nullptr ? shortcut->getDisplayString() : std::string();
}