summaryrefslogtreecommitdiff
path: root/src/yuzu/bootmanager.cpp
diff options
context:
space:
mode:
authorMai M <mathew1800@gmail.com>2022-06-10 23:09:49 -0400
committerGitHub <noreply@github.com>2022-06-10 23:09:49 -0400
commit266e086706d4cdb4fe1c6b3979f4f8a7e7b24f44 (patch)
treef4a72e049c4b692d067053cdf96b355e7d0ed794 /src/yuzu/bootmanager.cpp
parent9561a2f5b1bc0a09c37909b07a85e27ee2f60be4 (diff)
parent499c89790b0e07dbb014b8b7415bf0e28cecfaaf (diff)
Merge pull request #8318 from Docteh/cmake-qt56-entry
Update some files with Qt 5.15.2 best practices in mind
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r--src/yuzu/bootmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp
index aae2de2f8..bde465485 100644
--- a/src/yuzu/bootmanager.cpp
+++ b/src/yuzu/bootmanager.cpp
@@ -752,7 +752,7 @@ void GRenderWindow::mouseMoveEvent(QMouseEvent* event) {
input_subsystem->GetMouse()->MouseMove(x, y, touch_x, touch_y, center_x, center_y);
if (Settings::values.mouse_panning && !Settings::values.mouse_enabled) {
- QCursor::setPos(mapToGlobal({center_x, center_y}));
+ QCursor::setPos(mapToGlobal(QPoint{center_x, center_y}));
}
emit MouseActivity();