1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 06:23:53 +00:00

fixed race dialog bug

This commit is contained in:
scrawl 2012-05-29 01:47:49 +02:00
parent 0a17d6d710
commit f75266e4ba

View file

@ -471,14 +471,14 @@ void CharacterCreation::onRaceDialogDone(WindowBase* parWindow)
mWM->popGuiMode();
mWM->pushGuiMode(GM_Review);
}
else if (mCreationStage >= CSE_NameChosen)
else if (mCreationStage >= CSE_RaceChosen)
{
mWM->popGuiMode();
mWM->pushGuiMode(GM_Class);
}
else
{
mCreationStage = CSE_NameChosen;
mCreationStage = CSE_RaceChosen;
mWM->popGuiMode();
}
}