OpcodeDecoder: Calculate decoding time for vertices

This commit is contained in:
degasus 2015-01-27 23:37:17 +01:00
parent a2b872b9da
commit 20628b6e5d
1 changed files with 3 additions and 1 deletions

View File

@ -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
{