aboutsummaryrefslogtreecommitdiff
path: root/common/timer.h
diff options
context:
space:
mode:
authorAlejandro Marzini2010-06-20 20:19:53 +0000
committerAlejandro Marzini2010-06-20 20:19:53 +0000
commite0fe48032d6e27445a9c963e70cf82bf57b5fd5a (patch)
tree401b0d2e6f9477373ae88033ddfd28362f8db647 /common/timer.h
parent4a850209d739111b539fc39bcf003abd6e061538 (diff)
downloadscummvm-rg350-e0fe48032d6e27445a9c963e70cf82bf57b5fd5a.tar.gz
scummvm-rg350-e0fe48032d6e27445a9c963e70cf82bf57b5fd5a.tar.bz2
scummvm-rg350-e0fe48032d6e27445a9c963e70cf82bf57b5fd5a.zip
Made _sampleRate constant again in Audio::MixerImpl. (And Committing "common/timer.h" that should have been included in r50095)
svn-id: r50097
Diffstat (limited to 'common/timer.h')
-rw-r--r--common/timer.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/common/timer.h b/common/timer.h
index 057d6268c8..3a48875842 100644
--- a/common/timer.h
+++ b/common/timer.h
@@ -56,21 +56,6 @@ public:
* and no instance of this callback will be running anymore.
*/
virtual void removeTimerProc(TimerProc proc) = 0;
-
- /**
- * Get the number of milliseconds since the program was started.
- */
- virtual uint32 getMillis() = 0;
-
- /**
- * Delay for a specified amount of milliseconds
- */
- virtual void delayMillis(uint msecs) = 0;
-
- /**
- * Get the current time and date
- */
- virtual void getTimeAndDate(TimeDate &t) const = 0;
};
} // End of namespace Common