diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-04 13:02:48 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-04 13:02:48 -0800 |
commit | 97e06b0a0daccd3347ae1bcaf294093b5af32e85 (patch) | |
tree | 59e1997c90558f58f7368d6974c355e1f20d8f32 /src/citra_qt/debugger/graphics/graphics_tracing.cpp | |
parent | 18c981b99606b40897d8bc2da218e34509873246 (diff) | |
parent | 37a4ea046d80973d59ddb7735a0ffbf0bfd93ad0 (diff) |
Merge pull request #2476 from yuriks/shader-refactor3
Oh No! More shader changes!
Diffstat (limited to 'src/citra_qt/debugger/graphics/graphics_tracing.cpp')
-rw-r--r-- | src/citra_qt/debugger/graphics/graphics_tracing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/debugger/graphics/graphics_tracing.cpp b/src/citra_qt/debugger/graphics/graphics_tracing.cpp index 716ed50b8..17f1c5ce2 100644 --- a/src/citra_qt/debugger/graphics/graphics_tracing.cpp +++ b/src/citra_qt/debugger/graphics/graphics_tracing.cpp @@ -71,8 +71,8 @@ void GraphicsTracingWidget::StartRecording() { std::array<u32, 4 * 16> default_attributes; for (unsigned i = 0; i < 16; ++i) { for (unsigned comp = 0; comp < 3; ++comp) { - default_attributes[4 * i + comp] = - nihstro::to_float24(Pica::g_state.vs_default_attributes[i][comp].ToFloat32()); + default_attributes[4 * i + comp] = nihstro::to_float24( + Pica::g_state.input_default_attributes.attr[i][comp].ToFloat32()); } } |