diff options
| author | Johannes Schickel | 2008-05-24 22:59:20 +0000 |
|---|---|---|
| committer | Johannes Schickel | 2008-05-24 22:59:20 +0000 |
| commit | af7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1 (patch) | |
| tree | 865d30e730d5798b7e5a9b53ed0b9394dec2d840 /sound | |
| parent | 335eb1bf0853dbdede70fc4366fd1ff166715198 (diff) | |
| download | scummvm-rg350-af7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1.tar.gz scummvm-rg350-af7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1.tar.bz2 scummvm-rg350-af7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1.zip | |
Made AudioStream::getTotalPlayTime virtual (Ooops :-)
svn-id: r32261
Diffstat (limited to 'sound')
| -rw-r--r-- | sound/audiostream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h index 45740ba2ae..04133936ee 100644 --- a/sound/audiostream.h +++ b/sound/audiostream.h @@ -106,7 +106,7 @@ public: * * @return playtime in milliseconds */ - int32 getTotalPlayTime() const { return kUnknownPlayTime; } + virtual int32 getTotalPlayTime() const { return kUnknownPlayTime; } }; /** |
