diff options
author | Vincent Bénony | 2015-12-10 09:11:01 +0100 |
---|---|---|
committer | Vincent Bénony | 2016-01-06 16:17:37 +0100 |
commit | c4b8db5589ec69d4ed781fceb14c6add150ddbcf (patch) | |
tree | da615862663ebc31ffaee3d8e8d557b565c85368 /backends/platform | |
parent | 9b51cafc0448adbef5523e89a4d1ab4a43b82da6 (diff) | |
download | scummvm-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.mm | 2 |
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, |