mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 09:34:40 -06:00
wxGameList.cpp: remove std::tolower
This commit is contained in:
parent
57edcad457
commit
6769d54dc1
@ -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();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user