diff options
| -rw-r--r-- | backends/platform/wince/CEDevice.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/backends/platform/wince/CEDevice.cpp b/backends/platform/wince/CEDevice.cpp index 09c067ef15..9562dff5a9 100644 --- a/backends/platform/wince/CEDevice.cpp +++ b/backends/platform/wince/CEDevice.cpp @@ -76,13 +76,13 @@ void CEDevice::wakeUp() {  bool CEDevice::hasPocketPCResolution() {  	if (OSystem_WINCE3::isOzone() && hasWideResolution())  		return true; -	return (OSystem_WINCE3::getScreenWidth() < 320 && OSystem_WINCE3::getScreenWidth() >= 240); +	return (OSystem_WINCE3::getScreenWidth() <= 320 && OSystem_WINCE3::getScreenWidth() >= 240);  }  bool CEDevice::hasDesktopResolution() {  	if (OSystem_WINCE3::isOzone() && hasWideResolution())  		return true; -	return (OSystem_WINCE3::getScreenWidth() >= 320); +	return (OSystem_WINCE3::getScreenWidth() > 320);  }  bool CEDevice::hasWideResolution() { | 
