mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Since apparently no one feels like fixing SMG FIFO overflows, commit iceman4love77's fix. No idea if it works or what it does, he seemed pretty confident that it works though.
Only fail once if EFB pokes are requested in DX9/DX11. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5888 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -495,7 +495,7 @@ void Write16(const u16 _Value, const u32 _Address)
|
||||
case FIFO_HI_WATERMARK_HI:
|
||||
WriteHigh((u32 &)fifo.CPHiWatermark, _Value);
|
||||
// Tune this when you see lots of FIFO overflown by GatherPipe
|
||||
HiWatermark_Tighter = fifo.CPHiWatermark - 32 * 50;
|
||||
HiWatermark_Tighter = fifo.CPHiWatermark - 32 * 20;
|
||||
DEBUG_LOG(COMMANDPROCESSOR,"\t write to FIFO_HI_WATERMARK_HI : %04x", _Value);
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user