aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2014-03-03 23:02:44 +0100
committerStrangerke2014-03-03 23:02:44 +0100
commitdb7d8a0d4023a11da4ca8e7f77f20fa742b2e719 (patch)
treed011aa0faa3ee01197f580e28d7582a16913aaf3 /engines
parentf504635cbded10d9af2dda00369e6ebf19957d8e (diff)
downloadscummvm-rg350-db7d8a0d4023a11da4ca8e7f77f20fa742b2e719.tar.gz
scummvm-rg350-db7d8a0d4023a11da4ca8e7f77f20fa742b2e719.tar.bz2
scummvm-rg350-db7d8a0d4023a11da4ca8e7f77f20fa742b2e719.zip
VOYEUR: Remove a couple of default values in function declaration
Diffstat (limited to 'engines')
-rw-r--r--engines/voyeur/files.h4
-rw-r--r--engines/voyeur/voyeur_game.cpp2
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;