diff options
author | Strangerke | 2015-12-31 14:41:18 +0100 |
---|---|---|
committer | Strangerke | 2015-12-31 14:41:18 +0100 |
commit | 7ee36a97ee8c43b28c5dd4d8a0d3211698d1dc7f (patch) | |
tree | 2538eda2f60cb6461357dfd455040603abbf1baf /engines/mads | |
parent | e5189bad6790c8101e7287b5c2ae39add6c8e673 (diff) | |
download | scummvm-rg350-7ee36a97ee8c43b28c5dd4d8a0d3211698d1dc7f.tar.gz scummvm-rg350-7ee36a97ee8c43b28c5dd4d8a0d3211698d1dc7f.tar.bz2 scummvm-rg350-7ee36a97ee8c43b28c5dd4d8a0d3211698d1dc7f.zip |
TONY: As codec is always ADPCM, remove some dead code
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/scene.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/mads/scene.cpp b/engines/mads/scene.cpp index 2875bc0b56..cbc15b9da8 100644 --- a/engines/mads/scene.cpp +++ b/engines/mads/scene.cpp @@ -504,6 +504,8 @@ void Scene::drawElements(ScreenTransition transitionType, bool surfaceFlag) { // Merge any identified dirty areas _dirtyAreas.merge(1, DIRTY_AREAS_SIZE); + if (_posAdjust != Common::Point(0, 0)) + warning("Adjust used %d %d", _posAdjust.x, _posAdjust.y); // Copy background for the dirty areas to the screen _dirtyAreas.copy(&_backgroundSurface, &_vm->_screen, _posAdjust); |