From caa4578add35021bfbb00b5f81359592402096a3 Mon Sep 17 00:00:00 2001 From: Thanasis Antoniou Date: Wed, 17 Jul 2019 19:08:43 +0300 Subject: BLADERUNNER: Use unsigned 32bit diff for time durations --- engines/bladerunner/script/vk_script.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/bladerunner/script/vk_script.cpp') diff --git a/engines/bladerunner/script/vk_script.cpp b/engines/bladerunner/script/vk_script.cpp index 30dede7721..6c4de428a5 100644 --- a/engines/bladerunner/script/vk_script.cpp +++ b/engines/bladerunner/script/vk_script.cpp @@ -1948,7 +1948,7 @@ void VKScript::askRunciter(int questionId) { VK_Play_Speech_Line(kActorMcCoy, 7660, 0.5f); VK_Play_Speech_Line(kActorMcCoy, 7665, 0.5f); VK_Eye_Animates(1); - Delay(1500); + Delay(1500u); VK_Play_Speech_Line(kActorMcCoy, 8395, 0.5f); // M: You don't have anything to say? VK_Subject_Reacts(12, 8, 1, 0); VK_Play_Speech_Line(kActorRunciter, 1400, 0.5f); // R: What's the point @@ -2312,7 +2312,7 @@ void VKScript::askBulletBob(int questionId) { case 7470: // Low 15 VK_Subject_Reacts(50, -4, 0, -5); if (_vm->_cutContent) { - Delay(2000); + Delay(2000u); VK_Play_Speech_Line(kActorMcCoy, 8270, 0.5f); } VK_Play_Speech_Line(kActorBulletBob, 1240, 0.5f); -- cgit v1.2.3