aboutsummaryrefslogtreecommitdiff
path: root/sound/audiostream.h
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-07 17:45:38 +0000
committerJohannes Schickel2010-01-07 17:45:38 +0000
commit127213f706bf5fff97942f9f88686c6323ad5750 (patch)
treec24b473c4854742b910396edf7895cfefc26f68f /sound/audiostream.h
parent20a43c638cad067e361031a5fbdbdc2497e43497 (diff)
downloadscummvm-rg350-127213f706bf5fff97942f9f88686c6323ad5750.tar.gz
scummvm-rg350-127213f706bf5fff97942f9f88686c6323ad5750.tar.bz2
scummvm-rg350-127213f706bf5fff97942f9f88686c6323ad5750.zip
Remove setNumLoops and getNumPlayedLoops from AudioStream.
svn-id: r47137
Diffstat (limited to 'sound/audiostream.h')
-rw-r--r--sound/audiostream.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h
index fbb84bcf53..7c84a4cea6 100644
--- a/sound/audiostream.h
+++ b/sound/audiostream.h
@@ -83,22 +83,6 @@ public:
* By default this maps to endOfData()
*/
virtual bool endOfStream() const { return endOfData(); }
-
- /**
- * Sets number of times the stream is supposed to get looped
- * This also resets the number of loops played counter, which
- * can be queried with getNumPlayedLoops.
- * @see getNumPlayedLoops
- *
- * @param numLoops number of loops to play, 0 - infinite
- */
- virtual void setNumLoops(uint numLoops = 1) {}
-
- /**
- * Returns number of loops the stream has played.
- * @param numLoops number of loops to play, 0 - infinite
- */
- virtual uint getNumPlayedLoops() { return 0; }
};
/**