diff options
author | Jannik Vogel <email@jannikvogel.de> | 2016-05-12 10:06:35 +0200 |
---|---|---|
committer | Jannik Vogel <email@jannikvogel.de> | 2016-05-12 19:05:41 +0200 |
commit | 6c6d99ca51cca8d11e0641ee254377d45c5ff9f3 (patch) | |
tree | c899af0bce388607ba368d78dcd083c79f76fe10 /src/video_core/command_processor.cpp | |
parent | Merge pull request #1690 from JayFoxRox/tex-type-3 (diff) | |
download | yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar.gz yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar.bz2 yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar.lz yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar.xz yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar.zst yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.zip |
Diffstat (limited to 'src/video_core/command_processor.cpp')
-rw-r--r-- | src/video_core/command_processor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index e7dc5ddac..ad0da796e 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp @@ -128,7 +128,7 @@ static void WritePicaReg(u32 id, u32 value, u32 mask) { // TODO: Verify that this actually modifies the register! if (setup.index < 15) { - g_state.vs.default_attributes[setup.index] = attribute; + g_state.vs_default_attributes[setup.index] = attribute; setup.index++; } else { // Put each attribute into an immediate input buffer. |