diff options
-rw-r--r-- | engines/voyeur/files.h | 4 | ||||
-rw-r--r-- | engines/voyeur/voyeur_game.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/voyeur/files.h b/engines/voyeur/files.h index d1a0e2687f..16d27fb3f6 100644 --- a/engines/voyeur/files.h +++ b/engines/voyeur/files.h @@ -210,7 +210,7 @@ public: FilesManager(VoyeurEngine *vm); bool openBoltLib(const Common::String &filename, BoltFile *&boltFile); - byte *fload(const Common::String &filename, int *size = NULL); + byte *fload(const Common::String &filename, int *size); }; class RectEntry: public Common::Rect { @@ -348,7 +348,7 @@ public: void setupViewPort(); void setupViewPort(PictureResource *pic, Common::Rect *clippingRect = NULL); void addSaveRect(int pageIndex, const Common::Rect &r); - void fillPic(byte onOff = 0); + void fillPic(byte onOff); void drawIfaceTime(); void drawPicPerm(PictureResource *pic, const Common::Point &pt); }; diff --git a/engines/voyeur/voyeur_game.cpp b/engines/voyeur/voyeur_game.cpp index 752ec53d7a..1f2703c513 100644 --- a/engines/voyeur/voyeur_game.cpp +++ b/engines/voyeur/voyeur_game.cpp @@ -302,7 +302,7 @@ void VoyeurEngine::doClosingCredits() { int flags = READ_LE_UINT16(entry + 4); if (flags & 0x10) - (*_graphicsManager->_vPort)->fillPic(); + (*_graphicsManager->_vPort)->fillPic(0); if (flags & 1) { fi._foreColor = 1; |