summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-10 04:36:07 +0100
committerbunnei <bunneidev@gmail.com>2018-01-11 05:28:43 +0100
commit482cf8a005a3c13ac7239995fdbe2e78d12984b9 (patch)
tree0e29fe56ada3a97a1f753ad68e1430e98f66e303 /src/citra_qt
parentNV: Move the nv device nodes to their own directory and namespace. (diff)
downloadyuzu-482cf8a005a3c13ac7239995fdbe2e78d12984b9.tar
yuzu-482cf8a005a3c13ac7239995fdbe2e78d12984b9.tar.gz
yuzu-482cf8a005a3c13ac7239995fdbe2e78d12984b9.tar.bz2
yuzu-482cf8a005a3c13ac7239995fdbe2e78d12984b9.tar.lz
yuzu-482cf8a005a3c13ac7239995fdbe2e78d12984b9.tar.xz
yuzu-482cf8a005a3c13ac7239995fdbe2e78d12984b9.tar.zst
yuzu-482cf8a005a3c13ac7239995fdbe2e78d12984b9.zip
Diffstat (limited to 'src/citra_qt')
-rw-r--r--src/citra_qt/bootmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp
index 7107bfc60..eb542ad4e 100644
--- a/src/citra_qt/bootmanager.cpp
+++ b/src/citra_qt/bootmanager.cpp
@@ -12,8 +12,8 @@
#include "common/microprofile.h"
#include "common/scm_rev.h"
#include "common/string_util.h"
-#include "core/3ds.h"
#include "core/core.h"
+#include "core/frontend/framebuffer_layout.h"
#include "core/settings.h"
#include "input_common/keyboard.h"
#include "input_common/main.h"
@@ -271,7 +271,7 @@ void GRenderWindow::InitRenderTarget() {
child = new GGLWidgetInternal(fmt, this);
QBoxLayout* layout = new QHBoxLayout(this);
- resize(Core::kScreenTopWidth, Core::kScreenTopHeight + Core::kScreenBottomHeight);
+ resize(Layout::ScreenUndocked::Width, Layout::ScreenUndocked::Height);
layout->addWidget(child);
layout->setMargin(0);
setLayout(layout);