From d18dbdf7db5a86c04608b8c598fc5ba75e3c9db4 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 11 Sep 2020 00:10:55 +0200 Subject: [PATCH] - Exhumed: Optimized the flow in the laptop cutscene. --- source/exhumed/src/2d.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/exhumed/src/2d.cpp b/source/exhumed/src/2d.cpp index f470a3d47..6b736fe86 100644 --- a/source/exhumed/src/2d.cpp +++ b/source/exhumed/src/2d.cpp @@ -1099,6 +1099,7 @@ private: auto tex = dynamic_cast(tileGetTexture(kTileLoboLaptop)->GetTexture()->GetImage()); if (tex) tex->Reload(); + TileFiles.InvalidateTile(kTileLoboLaptop); return true; } @@ -1120,7 +1121,6 @@ private: void DisplayPhase2() { - DrawTexture(twod, tileGetTexture(kTileLoboLaptop), 0, 0, DTA_FullscreenEx, FSMode_ScaleToFit43, TAG_DONE); int yy = ebp; for (int i = 0; i < nStringTypeOn; i++, yy += 8) { @@ -1138,6 +1138,7 @@ private: } int currentclock = clock * 120 / 1'000'000'000; twod->ClearScreen(); + DrawTexture(twod, tileGetTexture(kTileLoboLaptop), 0, 0, DTA_FullscreenEx, FSMode_ScaleToFit43, TAG_DONE); switch (phase) { case 1: @@ -1146,7 +1147,6 @@ private: Phase1(); nextclock += 4; } - DrawTexture(twod, tileGetTexture(kTileLoboLaptop), 0, 0, DTA_FullscreenEx, FSMode_ScaleToFit43, TAG_DONE); if (skiprequest || currentclock >= 240) { InitPhase2(); @@ -1179,7 +1179,7 @@ private: if (skiprequest) { nextclock = (kTimerTicks * (screentext.Size() + 2)) + currentclock; - phase = 3; + phase = 4; } break;