aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/sound.h
diff options
context:
space:
mode:
authorMax Horn2009-11-02 21:54:57 +0000
committerMax Horn2009-11-02 21:54:57 +0000
commit51933629d1f1a17839ddbb75b2b619effe117abb (patch)
tree7292b23e5ce3fb11e6b2bb360a3befbbf35b64d9 /engines/tinsel/sound.h
parent400ee8c461e8060393b62be639c27dd3820dccd4 (diff)
downloadscummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.gz
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.bz2
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.zip
Changed foo(void) to foo() in almost all non-backend source files
svn-id: r45616
Diffstat (limited to 'engines/tinsel/sound.h')
-rw-r--r--engines/tinsel/sound.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tinsel/sound.h b/engines/tinsel/sound.h
index 4f37108949..36c5af1891 100644
--- a/engines/tinsel/sound.h
+++ b/engines/tinsel/sound.h
@@ -112,7 +112,7 @@ public:
bool playSample(int id, int sub, bool bLooped, int x, int y, int priority,
Audio::Mixer::SoundType type, Audio::SoundHandle *handle = 0);
- void stopAllSamples(void); // Stops any currently playing sample
+ void stopAllSamples(); // Stops any currently playing sample
void stopSpecSample(int id, int sub = 0); // Stops a specific sample
void setSFXVolumes(uint8 volume);
@@ -121,8 +121,8 @@ public:
bool sampleIsPlaying(int id = -1);
// TODO: Internal method, make this protected?
- void openSampleFiles(void);
- void closeSampleStream(void);
+ void openSampleFiles();
+ void closeSampleStream();
};
} // End of namespace Tinsel