mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #2507 from comex/asdfasdfasdfasdf
fix duplicate variable definition
This commit is contained in:
commit
64ccea4e05
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