mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-06 10:17:14 +00:00
PINK: Fixes for Finnish version
This commit is contained in:
parent
c652741e16
commit
c7517e2eac
@ -87,18 +87,14 @@ void ActionText::start() {
|
||||
delete stream;
|
||||
|
||||
switch(_actor->getPage()->getGame()->getLanguage()) {
|
||||
case Common::RU_RUS:
|
||||
_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;
|
||||
|
||||
case Common::FI_FIN:
|
||||
_text = Common::String(str).decode(Common::kWindows1257);
|
||||
break;
|
||||
|
||||
case Common::HE_ISR:
|
||||
_text = Common::String(str).decode(Common::kWindows1255);
|
||||
if (!_centered) {
|
||||
@ -106,6 +102,14 @@ void ActionText::start() {
|
||||
}
|
||||
break;
|
||||
|
||||
case Common::PL_POL:
|
||||
_text = Common::String(str).decode(Common::kWindows1250);
|
||||
break;
|
||||
|
||||
case Common::RU_RUS:
|
||||
_text = Common::String(str).decode(Common::kWindows1251);
|
||||
break;
|
||||
|
||||
case Common::EN_ANY:
|
||||
default:
|
||||
_text = Common::String(str);
|
||||
|
@ -101,7 +101,7 @@ Common::Error PinkEngine::init() {
|
||||
return Common::kNoGameDataFoundError;
|
||||
if (_orb.getTimestamp() != _bro->getTimestamp()) {
|
||||
warning("ORB and BRO timestamp mismatch. %x != %x", _orb.getTimestamp(), _bro->getTimestamp());
|
||||
return Common::kNoGameDataFoundError;
|
||||
//return Common::kNoGameDataFoundError;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user