Merge pull request #7909 from LAGonauta/dplii-quality-slider

Add slider to change DPLII decoder quality
This commit is contained in:
Léo Lam
2019-11-16 18:13:58 +01:00
committed by GitHub
18 changed files with 185 additions and 10 deletions

View File

@ -1065,3 +1065,8 @@ IniFile SConfig::LoadGameIni(const std::string& id, std::optional<u16> revision)
game_ini.Load(File::GetUserPath(D_GAMESETTINGS_IDX) + filename, true);
return game_ini;
}
bool SConfig::ShouldUseDPL2Decoder() const
{
return bDPL2Decoder && !bDSPHLE;
}