mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix black screen when backing out of InstallZipScreen
This commit is contained in:
parent
d6c8c6cfa0
commit
da73a96cec
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ void InstallZipScreen::CreateViews() {
|
||||||
|
|
||||||
installChoice_ = rightColumnItems->Add(new Choice(di->T("Install")));
|
installChoice_ = rightColumnItems->Add(new Choice(di->T("Install")));
|
||||||
installChoice_->OnClick.Handle(this, &InstallZipScreen::OnInstall);
|
installChoice_->OnClick.Handle(this, &InstallZipScreen::OnInstall);
|
||||||
rightColumnItems->Add(new Choice(di->T("Back")))->OnClick.Handle<UIScreen>(this, &UIScreen::OnBack);
|
rightColumnItems->Add(new Choice(di->T("Back")))->OnClick.Handle<UIScreen>(this, &UIScreen::OnOK); // OK so that EmuScreen will handle it right
|
||||||
rightColumnItems->Add(new CheckBox(&deleteZipFile_, di->T("Delete ZIP file")));
|
rightColumnItems->Add(new CheckBox(&deleteZipFile_, di->T("Delete ZIP file")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue