mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-21 05:09:46 -06:00
GX: timing for command 0x50 is more like 325 cycles on average on hardware. (measured 319/325/331)
fixes #297
This commit is contained in:
@ -2143,7 +2143,7 @@ void ExecuteCommand()
|
|||||||
case 0x50: // flush
|
case 0x50: // flush
|
||||||
FlushRequest = 1;
|
FlushRequest = 1;
|
||||||
FlushAttributes = ExecParams[0] & 0x3;
|
FlushAttributes = ExecParams[0] & 0x3;
|
||||||
CycleCount = 392;
|
CycleCount = 325;
|
||||||
// probably safe to just reset all pipelines
|
// probably safe to just reset all pipelines
|
||||||
// but needs checked
|
// but needs checked
|
||||||
VertexPipeline = 0;
|
VertexPipeline = 0;
|
||||||
|
Reference in New Issue
Block a user