[Scummvm-cvs-logs] scummvm master -> 198900069e8ecb7281c0faf50068f78a2817076e
bluegr
md5 at scummvm.org
Wed Dec 28 14:12:57 CET 2011
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
198900069e DREAMWEB: Remove some now-redundant references to the DreamWeb namespace
Commit: 198900069e8ecb7281c0faf50068f78a2817076e
https://github.com/scummvm/scummvm/commit/198900069e8ecb7281c0faf50068f78a2817076e
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2011-12-28T05:12:30-08:00
Commit Message:
DREAMWEB: Remove some now-redundant references to the DreamWeb namespace
Changed paths:
engines/dreamweb/dreamweb.cpp
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp
index be620bf..b752ae7 100644
--- a/engines/dreamweb/dreamweb.cpp
+++ b/engines/dreamweb/dreamweb.cpp
@@ -487,7 +487,7 @@ void DreamWebEngine::blit(const uint8 *src, int pitch, int x, int y, int w, int
}
void DreamWebEngine::printUnderMonitor() {
- uint8 *dst = workspace() + DreamWeb::kScreenwidth * 43 + 76;
+ uint8 *dst = workspace() + kScreenwidth * 43 + 76;
Graphics::Surface *s = _system->lockScreen();
if (!s)
@@ -502,7 +502,7 @@ void DreamWebEngine::printUnderMonitor() {
++dst; ++src;
}
}
- dst += DreamWeb::kScreenwidth - 170;
+ dst += kScreenwidth - 170;
}
_system->unlockScreen();
}
More information about the Scummvm-git-logs
mailing list