diff options
| author | 2016-05-12 19:32:44 -0400 | |
|---|---|---|
| committer | 2016-05-12 19:32:44 -0400 | |
| commit | d474d117f6ec1196967e50f8e94b95de6044c826 (patch) | |
| tree | 878b9bd2fb115e68b710774a90a687caf9501edd /src/citra_qt/debugger/graphics_tracing.cpp | |
| parent | Merge pull request #1690 from JayFoxRox/tex-type-3 (diff) | |
| parent | Move program_counter and call_stack from UnitState to interpreter (diff) | |
| download | yuzu-d474d117f6ec1196967e50f8e94b95de6044c826.tar.gz yuzu-d474d117f6ec1196967e50f8e94b95de6044c826.tar.xz yuzu-d474d117f6ec1196967e50f8e94b95de6044c826.zip | |
Merge pull request #1783 from JayFoxRox/cleanup-shadersetup
Cleanup ShaderSetup (Part 1)
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 | ||