mirror of
https://github.com/libretro/smsplus-gx.git
synced 2025-03-02 05:55:27 +00:00
Fix fallthrough issue on condition that is never goin to happen.
This commit is contained in:
parent
0645265d20
commit
77c9c68924
@ -431,7 +431,7 @@ static void Input_Remapping()
|
||||
{
|
||||
SDL_Event Event;
|
||||
char text[50];
|
||||
uint32_t pressed = 0;
|
||||
uint32_t pressed;
|
||||
int32_t currentselection = 1;
|
||||
int32_t exit_input = 0;
|
||||
uint32_t exit_map = 0;
|
||||
@ -453,8 +453,7 @@ static void Input_Remapping()
|
||||
{
|
||||
if (sms.console == CONSOLE_COLECO)
|
||||
{
|
||||
if (currentselection > 8) currentselection = 18;
|
||||
else currentselection = 9;
|
||||
currentselection = 18;
|
||||
}
|
||||
else currentselection = 7;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user