diff options
| author | 2014-08-25 16:12:10 -0400 | |
|---|---|---|
| committer | 2014-08-25 16:12:10 -0400 | |
| commit | 97fd8fc38d4f9c288779cddb06538860124c6263 (patch) | |
| tree | bc99e0fceaae732f9c8d4831fcdb8f661b49ccb8 /src/citra_qt/main.cpp | |
| parent | Merge pull request #75 from xsacha/qt5 (diff) | |
| parent | Pica/Rasterizer: Clarify a TODO. (diff) | |
| download | yuzu-97fd8fc38d4f9c288779cddb06538860124c6263.tar.gz yuzu-97fd8fc38d4f9c288779cddb06538860124c6263.tar.xz yuzu-97fd8fc38d4f9c288779cddb06538860124c6263.zip | |
Merge pull request #50 from neobrain/pica
Further work on Pica emulation
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 9a16cf92d..a6b87f781 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -52,11 +52,11 @@ GMainWindow::GMainWindow() | |||
| 52 | 52 | ||
| 53 | graphicsWidget = new GPUCommandStreamWidget(this); | 53 | graphicsWidget = new GPUCommandStreamWidget(this); |
| 54 | addDockWidget(Qt::RightDockWidgetArea, graphicsWidget); | 54 | addDockWidget(Qt::RightDockWidgetArea, graphicsWidget); |
| 55 | callstackWidget->hide(); | 55 | graphicsWidget ->hide(); |
| 56 | 56 | ||
| 57 | graphicsCommandsWidget = new GPUCommandListWidget(this); | 57 | graphicsCommandsWidget = new GPUCommandListWidget(this); |
| 58 | addDockWidget(Qt::RightDockWidgetArea, graphicsCommandsWidget); | 58 | addDockWidget(Qt::RightDockWidgetArea, graphicsCommandsWidget); |
| 59 | callstackWidget->hide(); | 59 | graphicsCommandsWidget->hide(); |
| 60 | 60 | ||
| 61 | QMenu* debug_menu = ui.menu_View->addMenu(tr("Debugging")); | 61 | QMenu* debug_menu = ui.menu_View->addMenu(tr("Debugging")); |
| 62 | debug_menu->addAction(disasmWidget->toggleViewAction()); | 62 | debug_menu->addAction(disasmWidget->toggleViewAction()); |