summaryrefslogtreecommitdiffstats
path: root/src/yuzu
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-29 07:53:30 +0200
committerLioncash <mathew1800@gmail.com>2019-06-03 21:31:52 +0200
commitcfb59aad3ff5ab782a0c4212c3085094e15d7ede (patch)
treea92b3425661a9e54f638f8f672f1da19ce41c0f7 /src/yuzu
parentyuzu/bootmanager: Remove unnecessary pointer casts (diff)
downloadyuzu-cfb59aad3ff5ab782a0c4212c3085094e15d7ede.tar
yuzu-cfb59aad3ff5ab782a0c4212c3085094e15d7ede.tar.gz
yuzu-cfb59aad3ff5ab782a0c4212c3085094e15d7ede.tar.bz2
yuzu-cfb59aad3ff5ab782a0c4212c3085094e15d7ede.tar.lz
yuzu-cfb59aad3ff5ab782a0c4212c3085094e15d7ede.tar.xz
yuzu-cfb59aad3ff5ab782a0c4212c3085094e15d7ede.tar.zst
yuzu-cfb59aad3ff5ab782a0c4212c3085094e15d7ede.zip
Diffstat (limited to 'src/yuzu')
-rw-r--r--src/yuzu/bootmanager.cpp5
-rw-r--r--src/yuzu/bootmanager.h2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp
index d9d2a8a4c..a4b89eed8 100644
--- a/src/yuzu/bootmanager.cpp
+++ b/src/yuzu/bootmanager.cpp
@@ -185,7 +185,7 @@ private:
bool do_painting;
};
-GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread)
+GRenderWindow::GRenderWindow(GMainWindow* parent, EmuThread* emu_thread)
: QWidget(parent), emu_thread(emu_thread) {
setWindowTitle(QStringLiteral("yuzu %1 | %2-%3")
.arg(QString::fromUtf8(Common::g_build_name),
@@ -194,8 +194,7 @@ GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread)
setAttribute(Qt::WA_AcceptTouchEvents);
InputCommon::Init();
- connect(this, &GRenderWindow::FirstFrameDisplayed, static_cast<GMainWindow*>(parent),
- &GMainWindow::OnLoadComplete);
+ connect(this, &GRenderWindow::FirstFrameDisplayed, parent, &GMainWindow::OnLoadComplete);
}
GRenderWindow::~GRenderWindow() {
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h
index 7f9f8e8e3..5a1ebd0fe 100644
--- a/src/yuzu/bootmanager.h
+++ b/src/yuzu/bootmanager.h
@@ -114,7 +114,7 @@ class GRenderWindow : public QWidget, public Core::Frontend::EmuWindow {
Q_OBJECT
public:
- GRenderWindow(QWidget* parent, EmuThread* emu_thread);
+ GRenderWindow(GMainWindow* parent, EmuThread* emu_thread);
~GRenderWindow() override;
// EmuWindow implementation