mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Remove obsolete hidden setting Browse
This commit is contained in:
@@ -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),
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
#include "ppsspp_config.h"
|
||||
|
||||
#include <cstdlib>
|
||||
#include <mutex>
|
||||
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
#define LOONGARCH_DISASSEMBLER_H
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstdbool>
|
||||
#include <cassert>
|
||||
|
||||
/* IR2_OPCODE; */
|
||||
|
||||
Reference in New Issue
Block a user