diff options
author | Alejandro Marzini | 2010-06-20 20:11:30 +0000 |
---|---|---|
committer | Alejandro Marzini | 2010-06-20 20:11:30 +0000 |
commit | 4a850209d739111b539fc39bcf003abd6e061538 (patch) | |
tree | 104183f5fffcea3b504fe28d102ac4def1f219aa /backends/timer/default | |
parent | 99c0f8260848ff758da3e40d9d816dc51974f793 (diff) | |
download | scummvm-rg350-4a850209d739111b539fc39bcf003abd6e061538.tar.gz scummvm-rg350-4a850209d739111b539fc39bcf003abd6e061538.tar.bz2 scummvm-rg350-4a850209d739111b539fc39bcf003abd6e061538.zip |
Removed getMillis, delayMillis and getTimeAndDate functions from TimerManager.
svn-id: r50095
Diffstat (limited to 'backends/timer/default')
-rw-r--r-- | backends/timer/default/default-timer.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/backends/timer/default/default-timer.h b/backends/timer/default/default-timer.h index c6da831f64..e7ac3d122f 100644 --- a/backends/timer/default/default-timer.h +++ b/backends/timer/default/default-timer.h @@ -48,10 +48,6 @@ public: * Timer callback, to be invoked at regular time intervals by the backend. */ void handler(); - - virtual uint32 getMillis() { return 0; } - virtual void delayMillis(uint msecs) {} - virtual void getTimeAndDate(TimeDate &t) const {} }; #endif |