SaveTool: replace a chain of ifs with a switch.
This commit is contained in:
parent
057185cb65
commit
441e0c2d1a
1 changed files with 13 additions and 11 deletions
|
@ -353,17 +353,19 @@ void SaveTool::drawImGui() {
|
|||
void SaveTool::drawGui() {
|
||||
drawMainMenu();
|
||||
|
||||
if(_uiState == UiState::Disclaimer) {
|
||||
switch(_uiState) {
|
||||
case UiState::Disclaimer:
|
||||
drawDisclaimer();
|
||||
}
|
||||
else if(_uiState == UiState::Initialising) {
|
||||
break;
|
||||
case UiState::Initialising:
|
||||
drawInitialisation();
|
||||
}
|
||||
else if(_uiState == UiState::ProfileManager) {
|
||||
break;
|
||||
case UiState::ProfileManager:
|
||||
drawProfileManager();
|
||||
}
|
||||
else if(_uiState == UiState::MainManager) {
|
||||
break;
|
||||
case UiState::MainManager:
|
||||
drawManager();
|
||||
break;
|
||||
}
|
||||
|
||||
if(_aboutPopup) {
|
||||
|
|
Loading…
Reference in a new issue