DSP: Default to HLE

This commit is contained in:
wheremyfoodat 2024-10-20 21:45:08 +03:00 committed by GitHub
parent 5d28f11ccf
commit 238d84ba3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -80,7 +80,7 @@ void EmulatorConfig::load() {
if (audioResult.is_ok()) {
auto audio = audioResult.unwrap();
auto dspCoreName = toml::find_or<std::string>(audio, "DSPEmulation", "Null");
auto dspCoreName = toml::find_or<std::string>(audio, "DSPEmulation", "HLE");
dspType = Audio::DSPCore::typeFromString(dspCoreName);
audioEnabled = toml::find_or<toml::boolean>(audio, "EnableAudio", false);
}