aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-02-19 14:35:24 +0000
committerMax Horn2003-02-19 14:35:24 +0000
commita6abd6bb13e5745aa7df58caaebf176bca6422c5 (patch)
tree5274e4562efe0141c973bb8fcddbf6d761100f0f /scumm
parentef8196befd03b1a7cc3180a91a5fb8497fed7f0f (diff)
downloadscummvm-rg350-a6abd6bb13e5745aa7df58caaebf176bca6422c5.tar.gz
scummvm-rg350-a6abd6bb13e5745aa7df58caaebf176bca6422c5.tar.bz2
scummvm-rg350-a6abd6bb13e5745aa7df58caaebf176bca6422c5.zip
Patch #689271: Usage bits fix
svn-id: r6626
Diffstat (limited to 'scumm')
-rw-r--r--scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 4295d01fad..66bd90246b 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -586,7 +586,7 @@ void Scumm::drawFlashlight()
// Remove the flash light first if it was previously drawn
if (_flashlightIsDrawn) {
updateDirtyRect(0, _flashlight.x, _flashlight.x + _flashlight.w,
- _flashlight.y, _flashlight.y + _flashlight.h, 0x80000000);
+ _flashlight.y, _flashlight.y + _flashlight.h, USAGE_BIT_DIRTY);
if (_flashlight.buffer) {
i = _flashlight.h;