Settings: Change default GPU FIFO size to 16

While this has the potential to be slower, there seems to be quite a few
games which break with the larger FIFO. In some cases, they wait for the
DMA interrupt, then busy wait for the GPU to go idle again. If the FIFO
is larger, this wait time till be longer, breaking things.
This commit is contained in:
Connor McLaughlin 2020-06-13 01:30:34 +10:00
parent bda528d70a
commit 16c47f4553
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ struct Settings
{
DEFAULT_DMA_MAX_SLICE_TICKS = 1000,
DEFAULT_DMA_HALT_TICKS = 100,
DEFAULT_GPU_FIFO_SIZE = 128,
DEFAULT_GPU_FIFO_SIZE = 16,
DEFAULT_GPU_MAX_RUN_AHEAD = 128
};