aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/gfx.cpp2
-rw-r--r--scumm/scumm.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index d9f8c374de..7ecf7c242f 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -809,7 +809,7 @@ bool Scumm::hasCharsetMask(int x, int y, int x2, int y2) {
return true;
}
-byte Scumm::isMaskActiveAt(int l, int t, int r, int b, byte *mem) {
+bool Scumm::isMaskActiveAt(int l, int t, int r, int b, byte *mem) {
int w, h, i;
l >>= 3;
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 6cf7d75a63..aae968617e 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -846,7 +846,7 @@ public:
VirtScreen *findVirtScreen(int y);
void setVirtscreenDirty(VirtScreen *vs, int left, int top, int right, int bottom);
- byte isMaskActiveAt(int l, int t, int r, int b, byte *mem);
+ bool isMaskActiveAt(int l, int t, int r, int b, byte *mem);
void drawFlashlight();