mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Fix macOS not liking unconsequential fallthroughs
This is technically a fallthrough, but it is literally inconsequential. Apparently, though, Apple Clang hates it.
This commit is contained in:
parent
8e3ec9aeef
commit
404204172c
1 changed files with 1 additions and 0 deletions
|
@ -736,6 +736,7 @@ void gamelogic(void)
|
||||||
{
|
{
|
||||||
game.swnmode = false;
|
game.swnmode = false;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
case SWN_NONE:
|
case SWN_NONE:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue