aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tinsel/sound.cpp')
-rw-r--r--engines/tinsel/sound.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tinsel/sound.cpp b/engines/tinsel/sound.cpp
index 264a9e403e..457b9b54b0 100644
--- a/engines/tinsel/sound.cpp
+++ b/engines/tinsel/sound.cpp
@@ -422,7 +422,7 @@ bool SoundManager::sampleIsPlaying(int id) {
/**
* Stops any currently playing sample.
*/
-void SoundManager::stopAllSamples(void) {
+void SoundManager::stopAllSamples() {
// stop currently playing sample
if (!TinselV2) {
@@ -460,7 +460,7 @@ void SoundManager::setSFXVolumes(uint8 volume) {
/**
* Opens and inits all sound sample files.
*/
-void SoundManager::openSampleFiles(void) {
+void SoundManager::openSampleFiles() {
// Floppy and demo versions have no sample files
if (_vm->getFeatures() & GF_FLOPPY || _vm->getFeatures() & GF_DEMO)
return;
@@ -558,7 +558,7 @@ void SoundManager::openSampleFiles(void) {
*/
}
-void SoundManager::closeSampleStream(void) {
+void SoundManager::closeSampleStream() {
_sampleStream.close();
free(_sampleIndex);
_sampleIndex = 0;