diff options
author | Eugene Sandulenko | 2006-06-04 19:44:47 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-06-04 19:44:47 +0000 |
commit | 1db54ac15cea1527d8832482e2f3fd2fb4ec5b4d (patch) | |
tree | 06566985458c576668019a3125eeaf231600e12e | |
parent | 60f19a0f2cc98d7f936d1dd3915b3408b9f262f6 (diff) | |
download | scummvm-rg350-1db54ac15cea1527d8832482e2f3fd2fb4ec5b4d.tar.gz scummvm-rg350-1db54ac15cea1527d8832482e2f3fd2fb4ec5b4d.tar.bz2 scummvm-rg350-1db54ac15cea1527d8832482e2f3fd2fb4ec5b4d.zip |
Small correction to resolution selector. Still not perfect.
svn-id: r22919
-rw-r--r-- | backends/maemo/maemo-sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/maemo/maemo-sdl.cpp b/backends/maemo/maemo-sdl.cpp index d53ff3c15b..dfb6cb7048 100644 --- a/backends/maemo/maemo-sdl.cpp +++ b/backends/maemo/maemo-sdl.cpp @@ -25,7 +25,7 @@ void OSystem_MAEMO::loadGFXMode() { - if (_fullscreen || _screenHeight > 400) { + if (_fullscreen || effectiveScreenHeight() > 400) { _overlayWidth = 800; _overlayHeight = 480; |