mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Qt: Temporary workaround for #11721 - simply remove the load button (you can still load games from the Games tab)
This commit is contained in:
parent
28cc87c898
commit
cb63df2a34
1 changed files with 2 additions and 1 deletions
|
@ -915,7 +915,8 @@ void MainScreen::CreateViews() {
|
|||
TextView *ver = rightColumnItems->Add(new TextView(versionString, new LinearLayoutParams(Margins(70, -6, 0, 0))));
|
||||
ver->SetSmall(true);
|
||||
ver->SetClip(false);
|
||||
#if defined(_WIN32) || defined(USING_QT_UI)
|
||||
// Temporarily disabled the load button for Qt. See #11721
|
||||
#if defined(_WIN32) // || defined(USING_QT_UI)
|
||||
rightColumnItems->Add(new Choice(mm->T("Load","Load...")))->OnClick.Handle(this, &MainScreen::OnLoadFile);
|
||||
#endif
|
||||
rightColumnItems->Add(new Choice(mm->T("Game Settings", "Settings")))->OnClick.Handle(this, &MainScreen::OnGameSettings);
|
||||
|
|
Loading…
Add table
Reference in a new issue