mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
PINK: Fix encoding for Polish
This commit is contained in:
parent
078eaf3079
commit
c652741e16
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user