mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 06:25:46 +00:00
Correct Linux Compile Error.
This commit is contained in:
parent
7007675b65
commit
38631f6cc3
2 changed files with 10 additions and 7 deletions
|
@ -109,4 +109,12 @@ void LogSettings() {
|
||||||
LogSetting("Services_BCATBoxcatLocal", Settings::values.bcat_boxcat_local);
|
LogSetting("Services_BCATBoxcatLocal", Settings::values.bcat_boxcat_local);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool IsGPULevelExtreme() {
|
||||||
|
return values.gpu_accuracy == GPUAccuracy::Extreme;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IsGPULevelHigh() {
|
||||||
|
return values.gpu_accuracy == GPUAccuracy::Extreme || values.gpu_accuracy == GPUAccuracy::High;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace Settings
|
} // namespace Settings
|
||||||
|
|
|
@ -486,13 +486,8 @@ struct Values {
|
||||||
std::map<u64, std::vector<std::string>> disabled_addons;
|
std::map<u64, std::vector<std::string>> disabled_addons;
|
||||||
} extern values;
|
} extern values;
|
||||||
|
|
||||||
constexpr bool IsGPULevelExtreme() {
|
bool IsGPULevelExtreme();
|
||||||
return values.gpu_accuracy == GPUAccuracy::Extreme;
|
bool IsGPULevelHigh();
|
||||||
}
|
|
||||||
|
|
||||||
constexpr bool IsGPULevelHigh() {
|
|
||||||
return values.gpu_accuracy == GPUAccuracy::Extreme || values.gpu_accuracy == GPUAccuracy::High;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Apply();
|
void Apply();
|
||||||
void LogSettings();
|
void LogSettings();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue