diff options
| author | Max Horn | 2007-04-25 19:31:23 +0000 |
|---|---|---|
| committer | Max Horn | 2007-04-25 19:31:23 +0000 |
| commit | 00b9bc7b36682365e64d710b4e843659bef373da (patch) | |
| tree | 27f48e6cb51c37d595a6dd04d9fc1d773f4f766c /engines/sword1 | |
| parent | 8306e0ebe5bddd5945bdfb436fcfb7148160e029 (diff) | |
| download | scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.gz scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.bz2 scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.zip | |
Removing lots of superfluous semicola (see mail by David Weinehall on scummvm-devel)
svn-id: r26594
Diffstat (limited to 'engines/sword1')
| -rw-r--r-- | engines/sword1/credits.h | 2 | ||||
| -rw-r--r-- | engines/sword1/sound.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engines/sword1/credits.h b/engines/sword1/credits.h index 5a60cc320d..bce2678cd3 100644 --- a/engines/sword1/credits.h +++ b/engines/sword1/credits.h @@ -40,7 +40,7 @@ public: uint8 *fetchFile(uint32 fileId, uint32 *size = NULL); uint8 *decompressFile(uint32 fileId); void enterPath(uint32 id); - void backToRoot(void) { _bufPos = _buf; }; + void backToRoot(void) { _bufPos = _buf; } private: uint8 *_bufPos; uint8 *_buf; diff --git a/engines/sword1/sound.h b/engines/sword1/sound.h index ddd0f017f3..2542c02b9e 100644 --- a/engines/sword1/sound.h +++ b/engines/sword1/sound.h @@ -72,10 +72,10 @@ class Sound { public: Sound(const char *searchPath, Audio::Mixer *mixer, ResMan *pResMan); ~Sound(void); - void setSpeechVol(uint8 volL, uint8 volR) { _speechVolL = volL; _speechVolR = volR; }; - void setSfxVol(uint8 volL, uint8 volR) { _sfxVolL = volL; _sfxVolR = volR; }; - void giveSpeechVol(uint8 *volL, uint8 *volR) { *volL = _speechVolL; *volR = _speechVolR; }; - void giveSfxVol(uint8 *volL, uint8 *volR) { *volL = _sfxVolL; *volR = _sfxVolR; }; + void setSpeechVol(uint8 volL, uint8 volR) { _speechVolL = volL; _speechVolR = volR; } + void setSfxVol(uint8 volL, uint8 volR) { _sfxVolL = volL; _sfxVolR = volR; } + void giveSpeechVol(uint8 *volL, uint8 *volR) { *volL = _speechVolL; *volR = _speechVolR; } + void giveSfxVol(uint8 *volL, uint8 *volR) { *volL = _sfxVolL; *volR = _sfxVolR; } void newScreen(uint32 screen); void quitScreen(void); void closeCowSystem(void); |
