1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-09-28 17:27:23 +02: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:
Misa 2023-06-05 18:02:24 -07:00
parent 8e3ec9aeef
commit 404204172c

View file

@ -736,6 +736,7 @@ void gamelogic(void)
{ {
game.swnmode = false; game.swnmode = false;
} }
break;
} }
case SWN_NONE: case SWN_NONE:
break; break;