LASTEXPRESS: Fix Missing Default Switch Cases

These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
D G Turner 2019-12-01 13:26:55 +00:00
parent f430e3318a
commit 7b275b454c
2 changed files with 6 additions and 0 deletions

View File

@ -524,6 +524,9 @@ IMPLEMENT_FUNCTION_I(12, Mertens, bonsoir, EntityIndex)
case 2:
getSound()->playSound(kEntityMertens, "CON1110H");
break;
default:
break;
}
}
}

View File

@ -152,6 +152,9 @@ IMPLEMENT_FUNCTION_II(10, Milos, enterCompartmentDialog, CarIndex, EntityPositio
case 2:
getSound()->playSound(kEntityPlayer, "CAT1014B");
break;
default:
break;
}
} else {
getSound()->excuseMeCath();