mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-30 05:34:00 +00:00
XEEN: Hopeful compilation fix
This commit is contained in:
parent
b1b0f6be2e
commit
ac7ec1febe
@ -92,9 +92,15 @@ public:
|
||||
void restoreButtons();
|
||||
|
||||
void addButton(const Common::Rect &bounds, int val,
|
||||
SpriteResource *sprites = nullptr);
|
||||
SpriteResource *sprites);
|
||||
void addButton(const Common::Rect &bounds, int val,
|
||||
uint frameNum, SpriteResource *sprites = nullptr);
|
||||
uint frameNum, SpriteResource *sprites);
|
||||
void addButton(const Common::Rect &bounds, int val) {
|
||||
addButton(bounds, val, nullptr);
|
||||
}
|
||||
void addButton(const Common::Rect &bounds, int val, uint frameNum) {
|
||||
addButton(bounds, val, frameNum, nullptr);
|
||||
}
|
||||
|
||||
void addPartyButtons(XeenEngine *vm);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user