aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2008-05-24 22:59:20 +0000
committerJohannes Schickel2008-05-24 22:59:20 +0000
commitaf7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1 (patch)
tree865d30e730d5798b7e5a9b53ed0b9394dec2d840
parent335eb1bf0853dbdede70fc4366fd1ff166715198 (diff)
downloadscummvm-rg350-af7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1.tar.gz
scummvm-rg350-af7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1.tar.bz2
scummvm-rg350-af7bc93c461bd5b7dbd4eeed01b87ad8dbc4e1a1.zip
Made AudioStream::getTotalPlayTime virtual (Ooops :-)
svn-id: r32261
-rw-r--r--sound/audiostream.h2
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; }
};
/**