summaryrefslogtreecommitdiffstats
path: root/src/sound/sound.cpp
diff options
context:
space:
mode:
authorkrzys-h <krzys_h@interia.pl>2013-12-28 12:30:46 +0100
committerkrzys-h <krzys_h@interia.pl>2013-12-28 12:30:46 +0100
commite9addb5a5e072b28eecfa1739ae38d67b68a2b23 (patch)
treee46bb4510163ed0d6ad46285b1020e6edd0335e9 /src/sound/sound.cpp
parent0ff7e55b3343fbca959fb11236a009fb3790b652 (diff)
downloadcolobot-e9addb5a5e072b28eecfa1739ae38d67b68a2b23.tar.gz
colobot-e9addb5a5e072b28eecfa1739ae38d67b68a2b23.tar.bz2
colobot-e9addb5a5e072b28eecfa1739ae38d67b68a2b23.zip
Added smooth transition in music - issue #205
Diffstat (limited to 'src/sound/sound.cpp')
-rw-r--r--src/sound/sound.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sound/sound.cpp b/src/sound/sound.cpp
index d197b81..1605e2b 100644
--- a/src/sound/sound.cpp
+++ b/src/sound/sound.cpp
@@ -147,12 +147,12 @@ bool CSoundInterface::MuteAll(bool bMute)
return true;
}
-bool CSoundInterface::PlayMusic(int rank, bool bRepeat)
+bool CSoundInterface::PlayMusic(int rank, bool bRepeat, float fadeTime)
{
return true;
}
-bool CSoundInterface::PlayMusic(const std::string &filename, bool bRepeat)
+bool CSoundInterface::PlayMusic(const std::string &filename, bool bRepeat, float fadeTime)
{
return true;
}
@@ -166,7 +166,7 @@ void CSoundInterface::SuspendMusic()
{
}
-void CSoundInterface::StopMusic()
+void CSoundInterface::StopMusic(float fadeTime)
{
}