early-access version 2792
This commit is contained in:
parent
0442a2e24b
commit
f41d375e23
@ -1,7 +1,7 @@
|
|||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 2791.
|
This is the source code for early-access 2792.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ std::string ParamPackage::Serialize() const {
|
|||||||
std::string ParamPackage::Get(const std::string& key, const std::string& default_value) const {
|
std::string ParamPackage::Get(const std::string& key, const std::string& default_value) const {
|
||||||
auto pair = data.find(key);
|
auto pair = data.find(key);
|
||||||
if (pair == data.end()) {
|
if (pair == data.end()) {
|
||||||
LOG_DEBUG(Common, "key '{}' not found", key);
|
LOG_TRACE(Common, "key '{}' not found", key);
|
||||||
return default_value;
|
return default_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ std::string ParamPackage::Get(const std::string& key, const std::string& default
|
|||||||
int ParamPackage::Get(const std::string& key, int default_value) const {
|
int ParamPackage::Get(const std::string& key, int default_value) const {
|
||||||
auto pair = data.find(key);
|
auto pair = data.find(key);
|
||||||
if (pair == data.end()) {
|
if (pair == data.end()) {
|
||||||
LOG_DEBUG(Common, "key '{}' not found", key);
|
LOG_TRACE(Common, "key '{}' not found", key);
|
||||||
return default_value;
|
return default_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -101,7 +101,7 @@ int ParamPackage::Get(const std::string& key, int default_value) const {
|
|||||||
float ParamPackage::Get(const std::string& key, float default_value) const {
|
float ParamPackage::Get(const std::string& key, float default_value) const {
|
||||||
auto pair = data.find(key);
|
auto pair = data.find(key);
|
||||||
if (pair == data.end()) {
|
if (pair == data.end()) {
|
||||||
LOG_DEBUG(Common, "key {} not found", key);
|
LOG_TRACE(Common, "key {} not found", key);
|
||||||
return default_value;
|
return default_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,6 +138,12 @@ int main(int argc, char** argv) {
|
|||||||
|
|
||||||
Config config{config_path};
|
Config config{config_path};
|
||||||
|
|
||||||
|
// apply the log_filter setting
|
||||||
|
// the logger was initialized before and doesn't pick up the filter on its own
|
||||||
|
Common::Log::Filter filter;
|
||||||
|
filter.ParseFilterString(Settings::values.log_filter.GetValue());
|
||||||
|
Common::Log::SetGlobalFilter(filter);
|
||||||
|
|
||||||
if (!program_args.empty()) {
|
if (!program_args.empty()) {
|
||||||
Settings::values.program_args = program_args;
|
Settings::values.program_args = program_args;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user