mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-02 13:01:18 +12:00
wxGameList.cpp: remove std::tolower
This commit is contained in:
parent
57edcad457
commit
6769d54dc1
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue