Merge pull request #159 from SeannyM/enable_log
Add support for disabling log from settings
This commit is contained in:
commit
80e9c02bd6
8 changed files with 37 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
#include "common/common.h"
|
||||
#include "common/log_manager.h"
|
||||
|
||||
#include "core/settings.h"
|
||||
#include "core/system.h"
|
||||
#include "core/core.h"
|
||||
#include "core/loader/loader.h"
|
||||
|
@ -22,6 +23,9 @@ int __cdecl main(int argc, char **argv) {
|
|||
}
|
||||
|
||||
Config config;
|
||||
|
||||
if (!Settings::values.enable_log)
|
||||
LogManager::Shutdown();
|
||||
|
||||
std::string boot_filename = argv[1];
|
||||
EmuWindow_GLFW* emu_window = new EmuWindow_GLFW;
|
||||
|
|
|
@ -65,11 +65,16 @@ void Config::ReadData() {
|
|||
Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
||||
}
|
||||
|
||||
void Config::ReadMiscellaneous() {
|
||||
Settings::values.enable_log = glfw_config->GetBoolean("Miscellaneous", "enable_log", true);
|
||||
}
|
||||
|
||||
void Config::Reload() {
|
||||
LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file);
|
||||
ReadControls();
|
||||
ReadCore();
|
||||
ReadData();
|
||||
ReadMiscellaneous();
|
||||
}
|
||||
|
||||
Config::~Config() {
|
||||
|
|
|
@ -18,6 +18,7 @@ class Config {
|
|||
void ReadControls();
|
||||
void ReadCore();
|
||||
void ReadData();
|
||||
void ReadMiscellaneous();
|
||||
public:
|
||||
Config();
|
||||
~Config();
|
||||
|
|
|
@ -32,6 +32,9 @@ gpu_refresh_rate = ## 60 (default)
|
|||
|
||||
[Data Storage]
|
||||
use_virtual_sd =
|
||||
|
||||
[Miscellaneous]
|
||||
enable_log =
|
||||
)";
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue