diff options
-rw-r--r-- | engines/mads/nebular/nebular_scenes2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes2.cpp b/engines/mads/nebular/nebular_scenes2.cpp index 9b0b8e84c6..36e7107609 100644 --- a/engines/mads/nebular/nebular_scenes2.cpp +++ b/engines/mads/nebular/nebular_scenes2.cpp @@ -162,7 +162,7 @@ void Scene201::enter() { if (_globals[kTeleporterCommand]) { _game._player._visible = false; _game._player._stepEnabled = false; - int sepChar = (_globals[kSexOfRex] == SEX_UNKNOWN) ? 't' : 'u'; + int sepChar = (_globals[kSexOfRex] == SEX_MALE) ? 't' : 'u'; // Guess values. What is the default value used by the compiler? int suffixNum = -1; int abortTimers = -1; |