From c652741e160c3e45acbb87026eed94a683375e3c Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 2 May 2021 00:43:47 +0200 Subject: [PATCH] PINK: Fix encoding for Polish --- engines/pink/objects/actions/action_text.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/engines/pink/objects/actions/action_text.cpp b/engines/pink/objects/actions/action_text.cpp index 1313c3d8833..8ce1d755f6d 100644 --- a/engines/pink/objects/actions/action_text.cpp +++ b/engines/pink/objects/actions/action_text.cpp @@ -91,6 +91,10 @@ void ActionText::start() { _text = Common::String(str).decode(Common::kWindows1251); break; + case Common::PL_POL: + _text = Common::String(str).decode(Common::kWindows1250); + break; + case Common::DA_DAN: _text = Common::String(str).decode(Common::kWindows1252); break;