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:
Filippos Karapetis 2008-05-23 09:17:39 +00:00
parent e2d799ad43
commit df79480611

View File

@ -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;