From 6cb4456c914c94eb33c11c20943c0ec7f7827fd2 Mon Sep 17 00:00:00 2001 From: sirlemonhead Date: Tue, 19 Nov 2019 10:46:11 +0000 Subject: [PATCH] Slow down the cinema text scroll speed a bit --- source/exhumed/src/menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exhumed/src/menu.cpp b/source/exhumed/src/menu.cpp index 2922a8f7f..89d528079 100644 --- a/source/exhumed/src/menu.cpp +++ b/source/exhumed/src/menu.cpp @@ -1967,7 +1967,7 @@ void DoCinemaText(short nVal) videoNextPage(); // TEMP - int time = (int)totalclock + 4; + int time = (int)totalclock + 8; while ((int)totalclock < time) { HandleAsync(); }