mirror of
https://github.com/libretro/scummvm.git
synced 2025-05-13 09:36:21 +00:00
VOYEUR: Remove a couple of default values in function declaration
This commit is contained in:
parent
f504635cbd
commit
db7d8a0d40
@ -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);
|
||||
};
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user