From f2a16e4f56443ad4b8a6eda7b8685bf3b1d94cc5 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Wed, 30 Jan 2008 23:12:51 +0000 Subject: Changed the parameter types of setFlags() and clearFlags() to match their definitions svn-id: r30711 --- engines/parallaction/gfxbase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/parallaction/gfxbase.cpp b/engines/parallaction/gfxbase.cpp index 60f00f10f5..ae14dd3ae7 100644 --- a/engines/parallaction/gfxbase.cpp +++ b/engines/parallaction/gfxbase.cpp @@ -69,11 +69,11 @@ byte *GfxObj::getData(uint f) { } -void GfxObj::setFlags(uint flags) { +void GfxObj::setFlags(uint32 flags) { _flags |= flags; } -void GfxObj::clearFlags(uint flags) { +void GfxObj::clearFlags(uint32 flags) { _flags &= ~flags; } -- cgit v1.2.3