From 6b3e91f9e718ce63d2245a35ec3b29c9308a0bff Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Fri, 18 Jul 2025 03:26:21 +0300 Subject: [PATCH] Nit Co-Authored-By: Paris Oplopoios --- src/core/services/hid.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/services/hid.cpp b/src/core/services/hid.cpp index 2193123c..695e0329 100644 --- a/src/core/services/hid.cpp +++ b/src/core/services/hid.cpp @@ -2,7 +2,6 @@ #include #include -#include #include #include "ipc.hpp" @@ -250,7 +249,7 @@ void HIDService::updateInputs(u64 currentTick) { // Key serialization helpers namespace HID::Keys { const char* keyToName(u32 key) { - static std::map keyMap = { + static std::unordered_map keyMap = { {A, "A"}, {B, "B"}, {Select, "Select"},