Rename remaining OSystem methods to match our coding guidelines
svn-id: r15332
This commit is contained in:
parent
6a50ba2308
commit
ce8c99bf62
74 changed files with 491 additions and 491 deletions
|
@ -156,12 +156,12 @@ void MessageDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data
|
|||
|
||||
TimedMessageDialog::TimedMessageDialog(const Common::String &message, uint32 duration)
|
||||
: MessageDialog(message, 0, 0) {
|
||||
_timer = g_system->get_msecs() + duration;
|
||||
_timer = g_system->getMillis() + duration;
|
||||
}
|
||||
|
||||
void TimedMessageDialog::handleTickle() {
|
||||
MessageDialog::handleTickle();
|
||||
if (g_system->get_msecs() > _timer)
|
||||
if (g_system->getMillis() > _timer)
|
||||
close();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue