[Scummvm-git-logs] scummvm master -> 2fe812db972b5ccfe5034142be3273db313b1e8f
sev-
noreply at scummvm.org
Wed Jun 28 18:51:09 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
2fe812db97 PINK: Fix Hebrew text encoding.
Commit: 2fe812db972b5ccfe5034142be3273db313b1e8f
https://github.com/scummvm/scummvm/commit/2fe812db972b5ccfe5034142be3273db313b1e8f
Author: Pritam (pritambasu14 at gmail.com)
Date: 2023-06-28T21:51:05+03:00
Commit Message:
PINK: Fix Hebrew text encoding.
Changed paths:
engines/pink/objects/actions/action_text.cpp
diff --git a/engines/pink/objects/actions/action_text.cpp b/engines/pink/objects/actions/action_text.cpp
index 0d5551d57e5..5036611f1ae 100644
--- a/engines/pink/objects/actions/action_text.cpp
+++ b/engines/pink/objects/actions/action_text.cpp
@@ -122,7 +122,7 @@ void ActionText::start() {
break;
case Common::HE_ISR:
- _text = Common::String(str).decode(Common::kWindows1255);
+ _text = Common::String(str).decode(Common::kWindows1251);
if (!_centered) {
align = Graphics::kTextAlignRight;
}
More information about the Scummvm-git-logs
mailing list