PARALLACTION: Fix Missing Default Switch Cases

These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
D G Turner 2019-10-20 21:15:43 +01:00
parent fd9c22f0b7
commit deb6dc5357
10 changed files with 44 additions and 0 deletions

View file

@ -83,7 +83,10 @@ bool Debugger::Cmd_Location(int argc, const char **argv) {
case 1:
debugPrintf("location <location name> [character name]\n");
break;
default:
break;
}
return true;