From b4dd006a4077fcbcc2aab85064a736e9e2401047 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 5 Sep 2020 18:41:40 +0200 Subject: [PATCH] - debug output for investigating Exhumed text crawl. --- source/exhumed/src/2d.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/exhumed/src/2d.cpp b/source/exhumed/src/2d.cpp index 6a48fcdcc..34b1ccf13 100644 --- a/source/exhumed/src/2d.cpp +++ b/source/exhumed/src/2d.cpp @@ -884,6 +884,7 @@ bool TextOverlay::AdvanceCinemaText(int clock) if (nHeight + nCrawlY > 0 || CDplaying()) { nCrawlY-= (clock - lastclock) / 15.; // do proper interpolation. + Printf("Scroll: crawlY = %f, clock = %d, time = %d, real time = %u\n", nCrawlY, clock, lastclock - clock, I_msTime()); lastclock = clock; return true; }