VOYEUR: Remove a couple of default values in function declaration

This commit is contained in:
Strangerke 2014-03-03 23:02:44 +01:00
parent f504635cbd
commit db7d8a0d40
2 changed files with 3 additions and 3 deletions

View File

@ -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);
};

View File

@ -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;