diff options
-rw-r--r-- | engines/cge2/bitmap.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cge2/bitmap.cpp b/engines/cge2/bitmap.cpp index e7ca459009..f42e2b2057 100644 --- a/engines/cge2/bitmap.cpp +++ b/engines/cge2/bitmap.cpp @@ -385,13 +385,13 @@ void Bitmap::xLatPos(V2D& p) { p.y = kWorldHeight - p.y - _h; } -bool Bitmap::moveHi(void) { - warning("STUB: Bitmap::moveHi()"); +bool Bitmap::moveHi() { + // No implementation needed in ScummVM return true; } -bool Bitmap::moveLo(void) { - warning("STUB: Bitmap::moveLo()"); +bool Bitmap::moveLo() { + // No implementation needed in ScummVM return true; } |