Merge pull request #5435 from FearlessTobi/port-4097

Port yuzu-emu/yuzu#4097: "Fix framebuffer size on fractional scaling display."
This commit is contained in:
Pengfei Zhu 2020-06-29 21:46:26 +08:00 committed by GitHub
commit 910cc9efc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -266,7 +266,7 @@ QByteArray GRenderWindow::saveGeometry() {
}
qreal GRenderWindow::windowPixelRatio() const {
return devicePixelRatio();
return devicePixelRatioF();
}
std::pair<u32, u32> GRenderWindow::ScaleTouch(const QPointF pos) const {