From 6769d54dc109eb92f7ebf0795b44a645a968d73c Mon Sep 17 00:00:00 2001 From: oltolm Date: Fri, 13 Jun 2025 22:05:49 +0200 Subject: [PATCH] wxGameList.cpp: remove std::tolower --- src/gui/components/wxGameList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/wxGameList.cpp b/src/gui/components/wxGameList.cpp index 650531ef..d70cb376 100644 --- a/src/gui/components/wxGameList.cpp +++ b/src/gui/components/wxGameList.cpp @@ -575,7 +575,7 @@ void wxGameList::OnKeyDown(wxListEvent& event) if (m_style != Style::kList) return; - const auto keycode = std::tolower(event.GetKeyCode()); + const auto keycode = event.GetKeyCode(); if (keycode == WXK_LEFT) { const auto item_count = GetItemCount();