mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-22 12:12:16 +00:00
LASTEXPRESS: Fix Missing Default Switch Cases
These are flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
f430e3318a
commit
7b275b454c
@ -524,6 +524,9 @@ IMPLEMENT_FUNCTION_I(12, Mertens, bonsoir, EntityIndex)
|
||||
case 2:
|
||||
getSound()->playSound(kEntityMertens, "CON1110H");
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -152,6 +152,9 @@ IMPLEMENT_FUNCTION_II(10, Milos, enterCompartmentDialog, CarIndex, EntityPositio
|
||||
case 2:
|
||||
getSound()->playSound(kEntityPlayer, "CAT1014B");
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
getSound()->excuseMeCath();
|
||||
|
Loading…
x
Reference in New Issue
Block a user