Browse Source

Merge pull request #4097 from kevinxucs/kevinxucs/device-pixel-scaling-float

Fix framebuffer size on fractional scaling display
nce_cpp
bunnei 6 years ago
committed by GitHub
parent
commit
d3c8f5d4c8
  1. 2
      src/yuzu/bootmanager.cpp

2
src/yuzu/bootmanager.cpp

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

Loading…
Cancel
Save