diff options
author | Lioncash <mathew1800@gmail.com> | 2015-09-11 00:23:00 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-09-11 00:57:24 -0400 |
commit | abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7 (patch) | |
tree | 9307673c985a0338efb8a409403b9ec90684005d /src/citra_qt/debugger/graphics_framebuffer.cpp | |
parent | abc34ddb88a43ae0f764536b720c58677ca16a48 (diff) |
citra_qt: Reorganize headers
Diffstat (limited to 'src/citra_qt/debugger/graphics_framebuffer.cpp')
-rw-r--r-- | src/citra_qt/debugger/graphics_framebuffer.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/citra_qt/debugger/graphics_framebuffer.cpp b/src/citra_qt/debugger/graphics_framebuffer.cpp index 39eefbf75c..80b32eaff2 100644 --- a/src/citra_qt/debugger/graphics_framebuffer.cpp +++ b/src/citra_qt/debugger/graphics_framebuffer.cpp @@ -9,18 +9,17 @@ #include <QPushButton> #include <QSpinBox> +#include "citra_qt/debugger/graphics_framebuffer.h" +#include "citra_qt/util/spinbox.h" + #include "common/color.h" -#include "core/hw/gpu.h" #include "core/memory.h" +#include "core/hw/gpu.h" #include "video_core/pica.h" #include "video_core/utils.h" -#include "graphics_framebuffer.h" - -#include "util/spinbox.h" - GraphicsFramebufferWidget::GraphicsFramebufferWidget(std::shared_ptr<Pica::DebugContext> debug_context, QWidget* parent) : BreakPointObserverDock(debug_context, tr("Pica Framebuffer"), parent), |