diff options
| author | 2016-05-12 10:06:35 +0200 | |
|---|---|---|
| committer | 2016-05-12 19:05:41 +0200 | |
| commit | 6c6d99ca51cca8d11e0641ee254377d45c5ff9f3 (patch) | |
| tree | c899af0bce388607ba368d78dcd083c79f76fe10 /src/citra_qt/debugger/graphics_tracing.cpp | |
| parent | Merge pull request #1690 from JayFoxRox/tex-type-3 (diff) | |
| download | yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar.gz yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.tar.xz yuzu-6c6d99ca51cca8d11e0641ee254377d45c5ff9f3.zip | |
Move default_attributes into Pica state
Diffstat (limited to 'src/citra_qt/debugger/graphics_tracing.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_tracing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_tracing.cpp b/src/citra_qt/debugger/graphics_tracing.cpp index 1402f8e79..9c80f7ec9 100644 --- a/src/citra_qt/debugger/graphics_tracing.cpp +++ b/src/citra_qt/debugger/graphics_tracing.cpp | |||
| @@ -74,7 +74,7 @@ void GraphicsTracingWidget::StartRecording() { | |||
| 74 | std::array<u32, 4 * 16> default_attributes; | 74 | std::array<u32, 4 * 16> default_attributes; |
| 75 | for (unsigned i = 0; i < 16; ++i) { | 75 | for (unsigned i = 0; i < 16; ++i) { |
| 76 | for (unsigned comp = 0; comp < 3; ++comp) { | 76 | for (unsigned comp = 0; comp < 3; ++comp) { |
| 77 | default_attributes[4 * i + comp] = nihstro::to_float24(Pica::g_state.vs.default_attributes[i][comp].ToFloat32()); | 77 | default_attributes[4 * i + comp] = nihstro::to_float24(Pica::g_state.vs_default_attributes[i][comp].ToFloat32()); |
| 78 | } | 78 | } |
| 79 | } | 79 | } |
| 80 | 80 | ||