1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 19:56:13 +01:00

Refactor UI/Input KeyboardShortcuts to Title Case

This commit is contained in:
pizza2004
2020-11-02 05:46:29 -07:00
parent 06c0c1b982
commit 34f362b86e
6 changed files with 201 additions and 201 deletions

View File

@@ -516,7 +516,7 @@ public:
std::string GetKeyboardShortcutString(int32_t shortcut) override
{
utf8 buffer[256];
keyboard_shortcuts_format_string(buffer, sizeof(buffer), shortcut);
KeyboardShortcutsFormatString(buffer, sizeof(buffer), shortcut);
return std::string(buffer);
}