diff options
author | Max Horn | 2003-02-19 14:35:24 +0000 |
---|---|---|
committer | Max Horn | 2003-02-19 14:35:24 +0000 |
commit | a6abd6bb13e5745aa7df58caaebf176bca6422c5 (patch) | |
tree | 5274e4562efe0141c973bb8fcddbf6d761100f0f | |
parent | ef8196befd03b1a7cc3180a91a5fb8497fed7f0f (diff) | |
download | scummvm-rg350-a6abd6bb13e5745aa7df58caaebf176bca6422c5.tar.gz scummvm-rg350-a6abd6bb13e5745aa7df58caaebf176bca6422c5.tar.bz2 scummvm-rg350-a6abd6bb13e5745aa7df58caaebf176bca6422c5.zip |
Patch #689271: Usage bits fix
svn-id: r6626
-rw-r--r-- | scumm/gfx.cpp | 2 |
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; |