mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 03:15:39 +00:00
libretro: Update compatibility settings
This commit is contained in:
parent
7e5410fc44
commit
5c6ee953d0
|
@ -557,5 +557,47 @@ std::unique_ptr<GameSettings::Entry> GetSettingsForGame(const std::string& game_
|
|||
return gs;
|
||||
}
|
||||
|
||||
if (game_code == "SLUS-00292")
|
||||
{
|
||||
gs->AddTrait(GameSettings::Trait::ForceRecompilerICache);
|
||||
return gs;
|
||||
}
|
||||
|
||||
if (game_code == "SLUS-00522")
|
||||
{
|
||||
gs->dma_max_slice_ticks = 200;
|
||||
return gs;
|
||||
}
|
||||
|
||||
if (game_code == "SLES-00469")
|
||||
{
|
||||
gs->dma_max_slice_ticks = 100;
|
||||
return gs;
|
||||
}
|
||||
|
||||
if (game_code == "SLPS-01163")
|
||||
{
|
||||
gs->dma_max_slice_ticks = 100;
|
||||
return gs;
|
||||
}
|
||||
|
||||
if (game_code == "SLUS-00498")
|
||||
{
|
||||
gs->dma_max_slice_ticks = 100;
|
||||
return gs;
|
||||
}
|
||||
|
||||
if (game_code == "SLPS-00433")
|
||||
{
|
||||
gs->dma_max_slice_ticks = 100;
|
||||
return gs;
|
||||
}
|
||||
|
||||
if (game_code == "SLUS-01029")
|
||||
{
|
||||
gs->AddTrait(GameSettings::Trait::DisableAnalogModeForcing);
|
||||
return gs;
|
||||
}
|
||||
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue