mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 05:21:25 +12:00
38 lines
772 B
C++
38 lines
772 B
C++
#include "stdafx.h"
|
|
#include "recording_config.h"
|
|
#include <charconv>
|
|
|
|
LOG_CHANNEL(cfg_log, "CFG");
|
|
|
|
cfg_recording g_cfg_recording;
|
|
|
|
cfg_recording::cfg_recording()
|
|
: cfg::node()
|
|
, path(fs::get_config_dir(true) + "recording.yml")
|
|
{
|
|
}
|
|
|
|
bool cfg_recording::load()
|
|
{
|
|
cfg_log.notice("Loading recording config from '%s'", path);
|
|
|
|
if (fs::file cfg_file{path, fs::read})
|
|
{
|
|
return from_string(cfg_file.to_string());
|
|
}
|
|
|
|
cfg_log.notice("Recording config missing. Using default settings. Path: %s", path);
|
|
from_default();
|
|
save();
|
|
return false;
|
|
}
|
|
|
|
void cfg_recording::save() const
|
|
{
|
|
cfg_log.notice("Saving recording config to '%s'", path);
|
|
|
|
if (!cfg::node::save(path))
|
|
{
|
|
cfg_log.error("Failed to save recording config to '%s' (error=%s)", path, fs::g_tls_error);
|
|
}
|
|
}
|