wxGameList.cpp: remove std::tolower

This commit is contained in:
oltolm 2025-06-13 22:05:49 +02:00
parent 57edcad457
commit 6769d54dc1

View file

@ -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();