diff options
author | Mai M <mathew1800@gmail.com> | 2022-06-10 23:09:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-10 23:09:49 -0400 |
commit | 266e086706d4cdb4fe1c6b3979f4f8a7e7b24f44 (patch) | |
tree | f4a72e049c4b692d067053cdf96b355e7d0ed794 /src/yuzu/bootmanager.cpp | |
parent | 9561a2f5b1bc0a09c37909b07a85e27ee2f60be4 (diff) | |
parent | 499c89790b0e07dbb014b8b7415bf0e28cecfaaf (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.cpp | 2 |
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(); |