FREESCAPE: Fix typo

This commit is contained in:
Le Philousophe 2023-06-04 15:48:04 +02:00 committed by neuromancer
parent c36b35b28f
commit 2d154c3b70

View file

@ -512,8 +512,8 @@ void FreescapeEngine::processInput() {
#if defined(__ANDROID__) || defined(IPHONE) #if defined(__ANDROID__) || defined(IPHONE)
Common::Point resolution = _gfx->nativeResolution(); Common::Point resolution = _gfx->nativeResolution();
mousPos.x = _screenW * mousePos.x / resolution.x; mousePos.x = _screenW * mousePos.x / resolution.x;
mousPos.y = _screenH * mousePos.y / resolution.y; mousePos.y = _screenH * mousePos.y / resolution.y;
touchedScreenControls = onScreenControls(mousePos); touchedScreenControls = onScreenControls(mousePos);
#endif #endif