diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2022-04-13 16:12:53 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2022-04-22 16:54:38 -0700 |
| commit | 97d0ff58c8dbe374a1b87e1a72f1f245ed27ed96 (patch) | |
| tree | 70031f58df4bfbfc6222257bebaf3bced14cf24e /Source/Core/VideoCommon/VertexLoader.cpp | |
| parent | f722bdf7f1ab5913d035f257ff82865a686b08d6 (diff) | |
Convert vertex loader position cache to std::array
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 b01ac961b9..c703c96508 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 + 1] = posmtx; + VertexLoaderManager::position_matrix_index_cache[loader->m_counter + 1] = posmtx; DataWrite<u32>(posmtx); PRIM_LOG("posmtx: {}, ", posmtx); } |
