mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
BACKENDS: SDL: Do not scale mouse position for LoDPI modes
This commit is contained in:
parent
020da412c5
commit
708caaa8fa
@ -209,8 +209,7 @@ bool SdlGraphicsManager::notifyMousePosition(Common::Point &mouse) {
|
||||
|
||||
int showCursor = SDL_DISABLE;
|
||||
// DPI aware scaling to mouse position
|
||||
uint scale;
|
||||
getDpiScalingFactor(&scale);
|
||||
uint scale = getFeatureState(BaseBackend::kFeatureHiDPI) ? 2 : 1;
|
||||
mouse.x *= scale;
|
||||
mouse.y *= scale;
|
||||
bool valid = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user