Remove obsolete hidden setting Browse

This commit is contained in:
Henrik Rydgård
2025-11-04 18:46:05 +01:00
parent 3391d65f4b
commit 1facc4d485
5 changed files with 1 additions and 7 deletions
-1
View File
@@ -231,7 +231,6 @@ static const ConfigSetting generalSettings[] = {
ConfigSetting("Enable Logging", SETTING(g_Config, bEnableLogging), true, CfgFlag::PER_GAME),
ConfigSetting("FileLogging", SETTING(g_Config, bEnableFileLogging), false, CfgFlag::PER_GAME),
ConfigSetting("AutoRun", SETTING(g_Config, bAutoRun), true, CfgFlag::DEFAULT),
ConfigSetting("Browse", SETTING(g_Config, bBrowse), false, CfgFlag::DEFAULT),
ConfigSetting("IgnoreBadMemAccess", SETTING(g_Config, bIgnoreBadMemAccess), true, CfgFlag::DEFAULT),
ConfigSetting("CurrentDirectory", SETTING(g_Config, currentDirectory), "", CfgFlag::DEFAULT),
ConfigSetting("ShowDebuggerOnLoad", SETTING(g_Config, bShowDebuggerOnLoad), false, CfgFlag::DEFAULT),
-1
View File
@@ -71,7 +71,6 @@ public:
bool bSaveSettings;
bool bFirstRun;
bool bUpdatedInstanceCounter = false;
bool bBrowse; // show a file browser on startup. TODO: Does anyone use this?
int iRunCount; // To be used to for example check for updates every 10 runs and things like that.
+1
View File
@@ -16,6 +16,7 @@
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include "ppsspp_config.h"
#include <cstdlib>
#include <mutex>
-4
View File
@@ -269,10 +269,6 @@ void MainThreadFunc() {
}
graphicsContext->ThreadStart();
if (g_Config.bBrowse) {
PostMessage(MainWindow::GetHWND(), WM_COMMAND, ID_FILE_LOAD, 0);
}
if (useEmuThread) {
while (true) {
if (equals_any(g_emuThreadState, EmuThreadState::QUIT_REQUESTED, EmuThreadState::STOPPED)) {
-1
View File
@@ -26,7 +26,6 @@
#define LOONGARCH_DISASSEMBLER_H
#include <cstdint>
#include <cstdbool>
#include <cassert>
/* IR2_OPCODE; */