mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-23 12:44:02 +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:
|
case 2:
|
||||||
getSound()->playSound(kEntityMertens, "CON1110H");
|
getSound()->playSound(kEntityMertens, "CON1110H");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -152,6 +152,9 @@ IMPLEMENT_FUNCTION_II(10, Milos, enterCompartmentDialog, CarIndex, EntityPositio
|
|||||||
case 2:
|
case 2:
|
||||||
getSound()->playSound(kEntityPlayer, "CAT1014B");
|
getSound()->playSound(kEntityPlayer, "CAT1014B");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
getSound()->excuseMeCath();
|
getSound()->excuseMeCath();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user