Remove break statement (return already ends the function execution)

This commit is contained in:
Akash 2015-06-25 19:48:22 +05:30
parent 85c4184ea5
commit 1d4dff9e42
1 changed files with 0 additions and 4 deletions

View File

@ -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()