diff options
Diffstat (limited to 'src/citra_qt/debugger/graphics_vertex_shader.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_vertex_shader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.cpp b/src/citra_qt/debugger/graphics_vertex_shader.cpp index 0b4320da5..96b40db1e 100644 --- a/src/citra_qt/debugger/graphics_vertex_shader.cpp +++ b/src/citra_qt/debugger/graphics_vertex_shader.cpp | |||
| @@ -424,7 +424,7 @@ GraphicsVertexShaderWidget::GraphicsVertexShaderWidget( | |||
| 424 | // Create an HBoxLayout to store the widgets used to specify a particular attribute | 424 | // Create an HBoxLayout to store the widgets used to specify a particular attribute |
| 425 | // and store it in a QWidget to allow for easy hiding and unhiding. | 425 | // and store it in a QWidget to allow for easy hiding and unhiding. |
| 426 | auto row_layout = new QHBoxLayout; | 426 | auto row_layout = new QHBoxLayout; |
| 427 | // Remove unecessary padding between rows | 427 | // Remove unnecessary padding between rows |
| 428 | row_layout->setContentsMargins(0, 0, 0, 0); | 428 | row_layout->setContentsMargins(0, 0, 0, 0); |
| 429 | 429 | ||
| 430 | row_layout->addWidget(new QLabel(tr("Attribute %1").arg(i, 2))); | 430 | row_layout->addWidget(new QLabel(tr("Attribute %1").arg(i, 2))); |
| @@ -590,7 +590,7 @@ void GraphicsVertexShaderWidget::OnCycleIndexChanged(int index) { | |||
| 590 | .arg(record.dest_out.w.ToFloat32()); | 590 | .arg(record.dest_out.w.ToFloat32()); |
| 591 | 591 | ||
| 592 | if (record.mask & Pica::Shader::DebugDataRecord::ADDR_REG_OUT) | 592 | if (record.mask & Pica::Shader::DebugDataRecord::ADDR_REG_OUT) |
| 593 | text += tr("Addres Registers: %1, %2\n") | 593 | text += tr("Address Registers: %1, %2\n") |
| 594 | .arg(record.address_registers[0]) | 594 | .arg(record.address_registers[0]) |
| 595 | .arg(record.address_registers[1]); | 595 | .arg(record.address_registers[1]); |
| 596 | if (record.mask & Pica::Shader::DebugDataRecord::CMP_RESULT) | 596 | if (record.mask & Pica::Shader::DebugDataRecord::CMP_RESULT) |