mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 01:46:42 +00:00
BLADERUNNER: CUTCONTENT: Skip Runciter quotes 1670 and 1680 in DEU version
This commit is contained in:
parent
b1661c7741
commit
91fb74486f
@ -309,7 +309,10 @@ void SceneScriptRC02::dialogueWithRunciter() {
|
||||
Actor_Face_Actor(kActorMcCoy, kActorRunciter, true);
|
||||
Actor_Says(kActorMcCoy, 395, 14);
|
||||
Actor_Face_Actor(kActorRunciter, kActorMcCoy, true);
|
||||
// Runciter's 1680 quote is *boop* (placeholder sound effect) in DEU version
|
||||
if (_vm->_language != Common::DE_DEU) {
|
||||
Actor_Says(kActorRunciter, 1680, 13);
|
||||
}
|
||||
Actor_Says(kActorMcCoy, 400, 14);
|
||||
Voight_Kampff_Activate(kActorRunciter, 20);
|
||||
Actor_Modify_Friendliness_To_Other(kActorRunciter, kActorMcCoy, -10);
|
||||
@ -380,7 +383,8 @@ bool SceneScriptRC02::ClickedOnActor(int actorId) {
|
||||
Actor_Says(kActorMcCoy, 4690, 11);
|
||||
Actor_Says(kActorMcCoy, 4695, 13);
|
||||
Actor_Face_Actor(kActorRunciter, kActorMcCoy, true);
|
||||
if (_vm->_cutContent) {
|
||||
if (_vm->_cutContent && _vm->_language != Common::DE_DEU) {
|
||||
// This quote is *boop* (placeholder sound effect) in DEU version.
|
||||
Actor_Says(kActorRunciter, 1670, 14);
|
||||
} else {
|
||||
Actor_Says(kActorRunciter, 1610, 14);
|
||||
|
Loading…
x
Reference in New Issue
Block a user