From 51f35550a9c43c7c6e1e47a8475aa25c93a0b0fd Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 29 Sep 2020 23:02:32 +0200 Subject: [PATCH] - last but not least, for international display, use ConFont in Exhumed's laptop cutscene. --- source/exhumed/src/2d.cpp | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/source/exhumed/src/2d.cpp b/source/exhumed/src/2d.cpp index 6b736fe86..d3dd3309d 100644 --- a/source/exhumed/src/2d.cpp +++ b/source/exhumed/src/2d.cpp @@ -1122,11 +1122,25 @@ private: void DisplayPhase2() { int yy = ebp; - for (int i = 0; i < nStringTypeOn; i++, yy += 8) + + auto p = GStrings["REQUIRED_CHARACTERS"]; + if (1)//p && *p) { - DrawText(twod, SmallFont2, CR_UNTRANSLATED, 70, yy, screentext[i], DTA_FullscreenScale, FSMode_Fit320x200, TAG_DONE); + yy *= 2; + for (int i = 0; i < nStringTypeOn; i++, yy += 10) + { + DrawText(twod, ConFont, CR_GREEN, 140, yy, screentext[i], DTA_FullscreenScale, FSMode_Fit640x400, TAG_DONE); + } + DrawText(twod, ConFont, CR_GREEN, 140, yy, screentext[nStringTypeOn], DTA_FullscreenScale, FSMode_Fit640x400, DTA_TextLen, nCharTypeOn, TAG_DONE); + } + else + { + for (int i = 0; i < nStringTypeOn; i++, yy += 8) + { + DrawText(twod, SmallFont2, CR_UNTRANSLATED, 70, yy, screentext[i], DTA_FullscreenScale, FSMode_Fit320x200, TAG_DONE); + } + DrawText(twod, SmallFont2, CR_UNTRANSLATED, 70, yy, screentext[nStringTypeOn], DTA_FullscreenScale, FSMode_Fit320x200, DTA_TextLen, nCharTypeOn, TAG_DONE); } - DrawText(twod, SmallFont2, CR_UNTRANSLATED, 70, yy, screentext[nStringTypeOn], DTA_FullscreenScale, FSMode_Fit320x200, DTA_TextLen, nCharTypeOn, TAG_DONE); } int Frame(uint64_t clock, bool skiprequest) override