From 894f9a6b0af5b90014a77c30fbb6becb24bbede4 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 3 Jan 2022 20:52:47 +0100 Subject: [PATCH] - Exhumed: fix Ramses text overlay display. --- source/games/exhumed/src/2d.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/games/exhumed/src/2d.cpp b/source/games/exhumed/src/2d.cpp index effaadd11..2a7b1ebae 100644 --- a/source/games/exhumed/src/2d.cpp +++ b/source/games/exhumed/src/2d.cpp @@ -355,8 +355,7 @@ void TextOverlay::ComputeCinemaText() void TextOverlay::ReadyCinemaText(const char* nVal) { FString label = nVal[0] == '$'? GStrings(nVal +1) : nVal; - screentext = label.Split("\n"); - ComputeCinemaText(); + Create(label, 0); } void TextOverlay::DisplayText()