Compare commits
1 Commits
master
...
display-mo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8d40c3b7d4 |
@@ -110,35 +110,37 @@ std::string GetTimeZoneString(TimeZone time_zone) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LogSettings() {
|
void LogSettings() {
|
||||||
const auto log_setting = [](std::string_view name, const auto& value) {
|
std::deque<std::string> settings_list;
|
||||||
LOG_INFO(Config, "{}: {}", name, value);
|
|
||||||
};
|
|
||||||
|
|
||||||
const auto log_path = [](std::string_view name, const std::filesystem::path& path) {
|
|
||||||
LOG_INFO(Config, "{}: {}", name, Common::FS::PathToUTF8String(path));
|
|
||||||
};
|
|
||||||
|
|
||||||
LOG_INFO(Config, "Eden Configuration:");
|
|
||||||
for (auto& [category, settings] : values.linkage.by_category) {
|
for (auto& [category, settings] : values.linkage.by_category) {
|
||||||
for (const auto& setting : settings) {
|
for (const auto& setting : settings) {
|
||||||
if (setting->Id() == values.eden_token.Id()) {
|
// Hide the token secret, for security reasons.
|
||||||
// Hide the token secret, for security reasons.
|
if (setting->Id() != values.eden_token.Id()) {
|
||||||
continue;
|
auto const is_default = setting->ToString() == setting->DefaultToString();
|
||||||
|
auto const name = fmt::format(
|
||||||
|
"{:c}{:c} {}.{}",
|
||||||
|
is_default ? '-' : 'M',
|
||||||
|
setting->UsingGlobal() ? '-' : 'C', TranslateCategory(category),
|
||||||
|
setting->GetLabel());
|
||||||
|
if (is_default)
|
||||||
|
settings_list.push_back(fmt::format("{}: {}\n", name, setting->Canonicalize()));
|
||||||
|
else
|
||||||
|
settings_list.push_front(fmt::format("{}: {}\n", name, setting->Canonicalize()));
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto name = fmt::format(
|
|
||||||
"{:c}{:c} {}.{}", setting->ToString() == setting->DefaultToString() ? '-' : 'M',
|
|
||||||
setting->UsingGlobal() ? '-' : 'C', TranslateCategory(category),
|
|
||||||
setting->GetLabel());
|
|
||||||
|
|
||||||
log_setting(name, setting->Canonicalize());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
log_path("DataStorage_CacheDir", Common::FS::GetEdenPath(Common::FS::EdenPath::CacheDir));
|
|
||||||
log_path("DataStorage_ConfigDir", Common::FS::GetEdenPath(Common::FS::EdenPath::ConfigDir));
|
std::string settings_str{};
|
||||||
log_path("DataStorage_LoadDir", Common::FS::GetEdenPath(Common::FS::EdenPath::LoadDir));
|
for (auto const& e : settings_list)
|
||||||
log_path("DataStorage_NANDDir", Common::FS::GetEdenPath(Common::FS::EdenPath::NANDDir));
|
settings_str += e;
|
||||||
log_path("DataStorage_SDMCDir", Common::FS::GetEdenPath(Common::FS::EdenPath::SDMCDir));
|
LOG_INFO(Config, "Eden Configuration:\n{}", settings_str);
|
||||||
|
#define LOG_PATH(NAME) \
|
||||||
|
LOG_INFO(Config, #NAME ": {}", Common::FS::PathToUTF8String(Common::FS::GetEdenPath(Common::FS::EdenPath::NAME)))
|
||||||
|
LOG_PATH(CacheDir);
|
||||||
|
LOG_PATH(ConfigDir);
|
||||||
|
LOG_PATH(LoadDir);
|
||||||
|
LOG_PATH(NANDDir);
|
||||||
|
LOG_PATH(SDMCDir);
|
||||||
|
#undef LOG_PATH
|
||||||
}
|
}
|
||||||
|
|
||||||
bool getDebugKnobAt(u8 i) {
|
bool getDebugKnobAt(u8 i) {
|
||||||
@@ -167,12 +169,10 @@ bool IsDMALevelSafe() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool IsFastmemEnabled() {
|
bool IsFastmemEnabled() {
|
||||||
if (values.cpu_accuracy.GetValue() == Settings::CpuAccuracy::Debugging) {
|
if (values.cpu_accuracy.GetValue() == Settings::CpuAccuracy::Debugging)
|
||||||
return bool(values.cpuopt_fastmem);
|
return bool(values.cpuopt_fastmem);
|
||||||
}
|
else if (values.cpu_accuracy.GetValue() == CpuAccuracy::Unsafe)
|
||||||
if (values.cpu_accuracy.GetValue() == CpuAccuracy::Unsafe) {
|
|
||||||
return bool(values.cpuopt_unsafe_host_mmu);
|
return bool(values.cpuopt_unsafe_host_mmu);
|
||||||
}
|
|
||||||
#if !defined(__APPLE__) && !defined(__linux__) && !defined(__ANDROID__) && !defined(_WIN32)
|
#if !defined(__APPLE__) && !defined(__linux__) && !defined(__ANDROID__) && !defined(_WIN32)
|
||||||
return false;
|
return false;
|
||||||
#else
|
#else
|
||||||
@@ -338,13 +338,10 @@ void TranslateResolutionInfo(ResolutionSetup setup, ResolutionScalingInfo& info)
|
|||||||
info.down_shift = 0;
|
info.down_shift = 0;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ASSERT(false);
|
UNREACHABLE();
|
||||||
info.up_scale = 1;
|
|
||||||
info.down_shift = 0;
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
info.up_factor = static_cast<f32>(info.up_scale) / (1U << info.down_shift);
|
info.up_factor = f32(info.up_scale) / (1U << info.down_shift);
|
||||||
info.down_factor = static_cast<f32>(1U << info.down_shift) / info.up_scale;
|
info.down_factor = f32(1U << info.down_shift) / info.up_scale;
|
||||||
info.active = info.up_scale != 1 || info.down_shift != 0;
|
info.active = info.up_scale != 1 || info.down_shift != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user