DRASCULA: Fix ego manipulation for translated versions

This commit is contained in:
Eugene Sandulenko 2017-11-18 22:41:41 +01:00
parent bcc608ce42
commit 34d19ff424
2 changed files with 2 additions and 2 deletions

View File

@ -781,7 +781,7 @@ bool DrasculaEngine::verify2() {
if (pickupObject())
return true;
} else {
if (!strcmp(textName, "hacker") && _hasName) {
if (!strcmp(textName, _textmisc[3]) && _hasName) {
if (checkAction(50))
return true;
} else {

View File

@ -76,7 +76,7 @@ void DrasculaEngine::moveCursor() {
moveCharacters();
updateRefresh();
if (!strcmp(textName, "hacker") && _hasName) {
if (!strcmp(textName, _textmisc[3]) && _hasName) {
if (_color != kColorRed && !_menuScreen)
color_abc(kColorRed);
} else if (!_menuScreen && _color != kColorLightGreen)