diff options
| author | skidau <skidau@gmail.com> | 2013-02-16 22:54:10 +1100 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2013-02-16 22:54:10 +1100 |
| commit | 0e2c3f3483e230079b5b6107d3cc634f60d92c78 (patch) | |
| tree | 0ac03d7c695a1a368636d067ed433ce18be36b50 /Source/Core/VideoCommon/Src/OpcodeDecoding.cpp | |
| parent | 45efced2809a7201909f85f2ee87d4625939d932 (diff) | |
Increased the cycle time of the vertex command. Fixes "Speed Challenge: Jacques Villeneuve's Racing Vision".
Diffstat (limited to 'Source/Core/VideoCommon/Src/OpcodeDecoding.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/OpcodeDecoding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp index 662dbc66a8..c7764dba71 100644 --- a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp +++ b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp @@ -237,7 +237,7 @@ u32 FifoCommandRunnable(u32 &command_size) command_size = 1 + 2; u16 numVertices = DataPeek16(1); command_size += numVertices * VertexLoaderManager::GetVertexSize(cmd_byte & GX_VAT_MASK); - cycleTime = 12 * numVertices; // This depends on the number of pixels rendered + cycleTime = 393 * numVertices; // This depends on the number of pixels rendered } else { |
