diff --git a/Core/Config.cpp b/Core/Config.cpp index 4e6157dfc0..0b6e12a6fe 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -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), diff --git a/Core/Config.h b/Core/Config.h index f50d5156bf..9bd17ea91d 100644 --- a/Core/Config.h +++ b/Core/Config.h @@ -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. diff --git a/Core/MIPS/JitCommon/JitCommon.cpp b/Core/MIPS/JitCommon/JitCommon.cpp index 38d9367aac..79b2ab7699 100644 --- a/Core/MIPS/JitCommon/JitCommon.cpp +++ b/Core/MIPS/JitCommon/JitCommon.cpp @@ -16,6 +16,7 @@ // https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/. #include "ppsspp_config.h" + #include #include diff --git a/Windows/EmuThread.cpp b/Windows/EmuThread.cpp index b2a82f3cc6..fbd86c37a5 100644 --- a/Windows/EmuThread.cpp +++ b/Windows/EmuThread.cpp @@ -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)) { diff --git a/ext/loongarch-disasm.h b/ext/loongarch-disasm.h index 83d18198b1..b339a73a23 100644 --- a/ext/loongarch-disasm.h +++ b/ext/loongarch-disasm.h @@ -26,7 +26,6 @@ #define LOONGARCH_DISASSEMBLER_H #include -#include #include /* IR2_OPCODE; */