From da73a96cec60a00ce352d5aa08970ce6571be4e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 5 Dec 2013 14:25:18 +0100 Subject: [PATCH] Fix black screen when backing out of InstallZipScreen --- UI/InstallZipScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/InstallZipScreen.cpp b/UI/InstallZipScreen.cpp index 24a8fbfc69..dacde8580d 100644 --- a/UI/InstallZipScreen.cpp +++ b/UI/InstallZipScreen.cpp @@ -49,7 +49,7 @@ void InstallZipScreen::CreateViews() { installChoice_ = rightColumnItems->Add(new Choice(di->T("Install"))); installChoice_->OnClick.Handle(this, &InstallZipScreen::OnInstall); - rightColumnItems->Add(new Choice(di->T("Back")))->OnClick.Handle(this, &UIScreen::OnBack); + rightColumnItems->Add(new Choice(di->T("Back")))->OnClick.Handle(this, &UIScreen::OnOK); // OK so that EmuScreen will handle it right rightColumnItems->Add(new CheckBox(&deleteZipFile_, di->T("Delete ZIP file"))); }