diff options
author | Johannes Schickel | 2012-02-23 01:04:06 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-02-23 01:08:48 +0100 |
commit | def1471fff478497ed245ed2e296617f0d48b0c6 (patch) | |
tree | f073db7dd23060fd5b7f25fc02931d212f0001db | |
parent | 833ce4f3489f3f9523b0d726d7e3b385e018abba (diff) | |
download | scummvm-rg350-def1471fff478497ed245ed2e296617f0d48b0c6.tar.gz scummvm-rg350-def1471fff478497ed245ed2e296617f0d48b0c6.tar.bz2 scummvm-rg350-def1471fff478497ed245ed2e296617f0d48b0c6.zip |
IPHONE: Slight formatting fix.
-rw-r--r-- | backends/platform/iphone/iphone_video.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/iphone/iphone_video.mm b/backends/platform/iphone/iphone_video.mm index 8734ffc165..d12f75ab73 100644 --- a/backends/platform/iphone/iphone_video.mm +++ b/backends/platform/iphone/iphone_video.mm @@ -237,7 +237,7 @@ static bool getMouseCoords(UIDeviceOrientation orientation, CGPoint point, int * // Clip coordinates if (*x < 0 || *x > CGRectGetWidth(*area) || *y < 0 || *y > CGRectGetHeight(*area)) - return false; + return false; return true; } |