mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 04:28:37 +00:00
Messages in the ITE puzzle scene will now be properly shown in Italian in the Italian fan translation of ITE
svn-id: r32221
This commit is contained in:
parent
e2d799ad43
commit
df79480611
@ -54,7 +54,12 @@ enum rifOptions {
|
||||
};
|
||||
|
||||
Puzzle::Puzzle(SagaEngine *vm) : _vm(vm), _solved(false), _active(false) {
|
||||
_lang = (_vm->getLanguage() == Common::DE_DEU) ? 1 : 0;
|
||||
_lang = 0;
|
||||
|
||||
if (_vm->getLanguage() == Common::DE_DEU)
|
||||
_lang = 1;
|
||||
else if (_vm->getLanguage() == Common::IT_ITA)
|
||||
_lang = 2;
|
||||
|
||||
_hintRqState = kRQNoHint;
|
||||
_hintOffer = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user