aboutsummaryrefslogtreecommitdiff
path: root/sound/mods/paula.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 /sound/mods/paula.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 'sound/mods/paula.h')
-rw-r--r--sound/mods/paula.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/mods/paula.h b/sound/mods/paula.h
index 647dc5fe56..7ed8ceaeca 100644
--- a/sound/mods/paula.h
+++ b/sound/mods/paula.h
@@ -65,8 +65,8 @@ public:
}
void clearVoice(byte voice);
void clearVoices() { for (int i = 0; i < NUM_VOICES; ++i) clearVoice(i); }
- void startPlay(void) { _playing = true; }
- void stopPlay(void) { _playing = false; }
+ void startPlay() { _playing = true; }
+ void stopPlay() { _playing = false; }
void pausePlay(bool pause) { _playing = !pause; }
// AudioStream API
@@ -91,7 +91,7 @@ protected:
bool _end;
Common::Mutex _mutex;
- virtual void interrupt(void) = 0;
+ virtual void interrupt() = 0;
void startPaula() {
_playing = true;