diff options
| author | degasus <wickmarkus@web.de> | 2016-05-07 09:35:40 +0200 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2016-09-17 16:47:12 +0200 |
| commit | 258f48572deda4bedd776dd7e11584e9c252c61d (patch) | |
| tree | e785be4317e058c123433d2d2458d3e4ba3aeca0 /Source/Core/VideoCommon/VertexLoader.cpp | |
| parent | 22b5d89bf15e22de63264771c1f373519ea5cc25 (diff) | |
VertexLoaderJit: Fix out-of-bounds access for zfreeze.
This fixes a GCC6.1 warning.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader.cpp b/Source/Core/VideoCommon/VertexLoader.cpp index e1410b49f2..1db8deec0c 100644 --- a/Source/Core/VideoCommon/VertexLoader.cpp +++ b/Source/Core/VideoCommon/VertexLoader.cpp @@ -23,7 +23,7 @@ static void PosMtx_ReadDirect_UByte(VertexLoader* loader) { u32 posmtx = DataRead<u8>() & 0x3f; if (loader->m_counter < 3) - VertexLoaderManager::position_matrix_index[loader->m_counter] = posmtx; + VertexLoaderManager::position_matrix_index[loader->m_counter + 1] = posmtx; DataWrite<u32>(posmtx); PRIM_LOG("posmtx: %d, ", posmtx); } |
