PARALLACTION: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
fd9c22f0b7
commit
deb6dc5357
10 changed files with 44 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue