mirror of https://github.com/PCSX2/pcsx2.git
Remove break statement (return already ends the function execution)
This commit is contained in:
parent
85c4184ea5
commit
1d4dff9e42
|
@ -570,13 +570,9 @@ int swap_states(int a)
|
|||
switch(a)
|
||||
{
|
||||
case 0: return 0;
|
||||
break;
|
||||
case 1: return 2;
|
||||
break;
|
||||
case 2: return 1;
|
||||
break;
|
||||
default: return 0; // If user's set more than 2 in ini file, set variable to 0.
|
||||
break;
|
||||
}
|
||||
}
|
||||
void GSHacksDlg::OnInit()
|
||||
|
|
Loading…
Reference in New Issue