aboutsummaryrefslogtreecommitdiff
path: root/backends/platform
diff options
context:
space:
mode:
authorVincent Bénony2015-12-10 09:11:01 +0100
committerVincent Bénony2016-01-06 16:17:37 +0100
commitc4b8db5589ec69d4ed781fceb14c6add150ddbcf (patch)
treeda615862663ebc31ffaee3d8e8d557b565c85368 /backends/platform
parent9b51cafc0448adbef5523e89a4d1ab4a43b82da6 (diff)
downloadscummvm-rg350-c4b8db5589ec69d4ed781fceb14c6add150ddbcf.tar.gz
scummvm-rg350-c4b8db5589ec69d4ed781fceb14c6add150ddbcf.tar.bz2
scummvm-rg350-c4b8db5589ec69d4ed781fceb14c6add150ddbcf.zip
IOS: Typo
Diffstat (limited to 'backends/platform')
-rw-r--r--backends/platform/ios7/ios7_video.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/ios7/ios7_video.mm b/backends/platform/ios7/ios7_video.mm
index 1660dd4612..10900b4d55 100644
--- a/backends/platform/ios7/ios7_video.mm
+++ b/backends/platform/ios7/ios7_video.mm
@@ -515,7 +515,7 @@ uint getSizeNextPOT(uint size) {
memset(_scalerMemorySrc, 0, _videoContext.screenTexture.pitch * 2);
// Copy original buffer
memcpy(_scalerMemorySrc + _videoContext.screenTexture.pitch * 2, _videoContext.screenTexture.getPixels(), _videoContext.screenTexture.pitch * _videoContext.screenTexture.h);
- // Clear two linex after
+ // Clear two lines after
memset(_scalerMemorySrc + _videoContext.screenTexture.pitch * (2 + _videoContext.screenTexture.h), 0, _videoContext.screenTexture.pitch * 2);
// Apply scaler
_scaler(_scalerMemorySrc + _videoContext.screenTexture.pitch * 2,