diff options
author | RichieSams | 2013-09-07 11:52:49 -0500 |
---|---|---|
committer | RichieSams | 2013-09-07 11:52:49 -0500 |
commit | 94268fed060761b85a2d3d848590e658e2a9de8f (patch) | |
tree | 8ea11cf74becddf69e2cf0c1fa7f93f72e130cd3 /engines | |
parent | 1e1d5cafe50b6860875c2bb392c1180852e5037d (diff) | |
download | scummvm-rg350-94268fed060761b85a2d3d848590e658e2a9de8f.tar.gz scummvm-rg350-94268fed060761b85a2d3d848590e658e2a9de8f.tar.bz2 scummvm-rg350-94268fed060761b85a2d3d848590e658e2a9de8f.zip |
ZVISION: Update ActionSetPartialScreen to use new function name
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/actions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/actions.cpp b/engines/zvision/actions.cpp index 2a0a72be20..d91c3b879d 100644 --- a/engines/zvision/actions.cpp +++ b/engines/zvision/actions.cpp @@ -286,7 +286,7 @@ bool ActionSetPartialScreen::execute(ZVision *engine) { RenderManager *renderManager = engine->getRenderManager(); if (_backgroundColor > 0) { - renderManager->clearWorkingWindowToColor(_backgroundColor); + renderManager->clearWorkingWindowTo555Color(_backgroundColor); } renderManager->renderImageToScreen(_fileName, _x, _y); |