mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-24 03:40:26 +00:00
Merge pull request #1973 from degasus/master
OpcodeDecoder: Calculate decoding time for vertices
This commit is contained in:
commit
b92eb03d26
@ -287,7 +287,9 @@ u8* OpcodeDecoder_Run(DataReader src, u32* cycles, bool in_display_list)
|
||||
else
|
||||
src.Skip(bytes);
|
||||
}
|
||||
totalCycles += 1600;
|
||||
|
||||
// 4 GPU ticks per vertex, 3 CPU ticks per GPU tick
|
||||
totalCycles += num_vertices * 4 * 3 + 6;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user