summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-09-04 04:32:42 +0200
committerGitHub <noreply@github.com>2019-09-04 04:32:42 +0200
commit137d16567223cec46a7c8cf7f95792c135777a18 (patch)
treec8e7d9038bdcfd507548a83d39cd245d86d66d49 /src/video_core/engines/maxwell_3d.h
parentMerge pull request #2831 from FearlessTobi/port-4914 (diff)
parentmaxwell_3d: Fix macro binding cursor (diff)
downloadyuzu-137d16567223cec46a7c8cf7f95792c135777a18.tar
yuzu-137d16567223cec46a7c8cf7f95792c135777a18.tar.gz
yuzu-137d16567223cec46a7c8cf7f95792c135777a18.tar.bz2
yuzu-137d16567223cec46a7c8cf7f95792c135777a18.tar.lz
yuzu-137d16567223cec46a7c8cf7f95792c135777a18.tar.xz
yuzu-137d16567223cec46a7c8cf7f95792c135777a18.tar.zst
yuzu-137d16567223cec46a7c8cf7f95792c135777a18.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.h')
-rw-r--r--src/video_core/engines/maxwell_3d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 1ee982b76..0184342a0 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1270,7 +1270,7 @@ private:
MemoryManager& memory_manager;
/// Start offsets of each macro in macro_memory
- std::unordered_map<u32, u32> macro_offsets;
+ std::array<u32, 0x80> macro_positions = {};
/// Memory for macro code
MacroMemory macro_memory;