mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
NUVIE: Fix compiler warnings
This commit is contained in:
parent
3f9afa81bd
commit
fb7bfffe35
@ -122,9 +122,9 @@ public:
|
||||
class TimedMessage : public TimedEvent {
|
||||
Std::string msg;
|
||||
public:
|
||||
TimedMessage(uint32 reltime, const char *m, bool repeat = false)
|
||||
TimedMessage(uint32 reltime, const char *m, bool repeating = false)
|
||||
: TimedEvent(reltime), msg(m) {
|
||||
repeat_count = repeat ? -1 : 0;
|
||||
repeat_count = repeating ? -1 : 0;
|
||||
}
|
||||
void timed(uint32 evtime) override {
|
||||
DEBUG(0, LEVEL_NOTIFICATION, "Activate! evtime=%d msg=\"%s\"\n", evtime, msg.c_str());
|
||||
|
Loading…
Reference in New Issue
Block a user