aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/sound/bgatmosphere.cpp
diff options
context:
space:
mode:
authorOri Avtalion2011-02-26 20:01:02 +0200
committerOri Avtalion2011-02-26 20:25:44 +0200
commit765540a5fd58238c51ea50f96e5a5940dbbf88ef (patch)
tree7739d9455d2d0128c3bca0f76573f65cbbe68c30 /engines/gob/sound/bgatmosphere.cpp
parent9bd5e8ff15dc22cf43281365e5835fc028a7caad (diff)
downloadscummvm-rg350-765540a5fd58238c51ea50f96e5a5940dbbf88ef.tar.gz
scummvm-rg350-765540a5fd58238c51ea50f96e5a5940dbbf88ef.tar.bz2
scummvm-rg350-765540a5fd58238c51ea50f96e5a5940dbbf88ef.zip
GOB: Avoid hiding overloaded virtual methods
Diffstat (limited to 'engines/gob/sound/bgatmosphere.cpp')
-rw-r--r--engines/gob/sound/bgatmosphere.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/sound/bgatmosphere.cpp b/engines/gob/sound/bgatmosphere.cpp
index f0977aa45b..8850a727d3 100644
--- a/engines/gob/sound/bgatmosphere.cpp
+++ b/engines/gob/sound/bgatmosphere.cpp
@@ -47,7 +47,7 @@ BackgroundAtmosphere::~BackgroundAtmosphere() {
queueClear();
}
-void BackgroundAtmosphere::play() {
+void BackgroundAtmosphere::playBA() {
Common::StackLock slock(_mutex);
_queuePos = -1;
@@ -59,7 +59,7 @@ void BackgroundAtmosphere::play() {
SoundMixer::play(*_queue[_queuePos], 1, 0);
}
-void BackgroundAtmosphere::stop() {
+void BackgroundAtmosphere::stopBA() {
SoundMixer::stop(0);
}