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:
parent
0a17d6d710
commit
f75266e4ba
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue