aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2010-06-28 12:13:04 +0000
committerWillem Jan Palenstijn2010-06-28 12:13:04 +0000
commit0f0977535c0fa07ca28ed696c906279153b1c9d8 (patch)
tree3bdd40c6e5afeac81506437ff6fac6f7cabe16c3 /engines/sci
parent445bfee08c6d78457514701aaa4701d7883eea15 (diff)
downloadscummvm-rg350-0f0977535c0fa07ca28ed696c906279153b1c9d8.tar.gz
scummvm-rg350-0f0977535c0fa07ca28ed696c906279153b1c9d8.tar.bz2
scummvm-rg350-0f0977535c0fa07ca28ed696c906279153b1c9d8.zip
Remove CRs
svn-id: r50435
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/graphics/screen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/graphics/screen.cpp b/engines/sci/graphics/screen.cpp
index 8cda42e9aa..eee6898a23 100644
--- a/engines/sci/graphics/screen.cpp
+++ b/engines/sci/graphics/screen.cpp
@@ -594,9 +594,9 @@ void GfxScreen::debugShowMap(int mapNo) {
}
void GfxScreen::scale2x(const byte *src, byte *dst, int16 srcWidth, int16 srcHeight) {
- const int newWidth = srcWidth * 2;
- const byte *srcPtr = src;
-
+ const int newWidth = srcWidth * 2;
+ const byte *srcPtr = src;
+
for (int y = 0; y < srcHeight; y++) {
for (int x = 0; x < srcWidth; x++) {
const byte color = *srcPtr++;