mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
fix duplicate variable definition
This commit is contained in:
parent
a3b3f0522b
commit
97d6b71f3f
1 changed files with 1 additions and 1 deletions
|
@ -1466,7 +1466,7 @@ void CFrame::ParseHotkeys(wxKeyEvent &event)
|
|||
g_Config.iStereoConvergence = 500;
|
||||
}
|
||||
|
||||
for (int i = HK_SELECT_STATE_SLOT_1; i < HK_SELECT_STATE_SLOT_10; ++i)
|
||||
for (i = HK_SELECT_STATE_SLOT_1; i < HK_SELECT_STATE_SLOT_10; ++i)
|
||||
{
|
||||
if (IsHotkey(event, i))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue