aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/voyeur/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/voyeur/sound.cpp b/engines/voyeur/sound.cpp
index 0e9d35e9a6..f47fdde3e1 100644
--- a/engines/voyeur/sound.cpp
+++ b/engines/voyeur/sound.cpp
@@ -28,7 +28,7 @@
namespace Voyeur {
- SoundManager::SoundManager(Audio::Mixer *mixer) {
+SoundManager::SoundManager(Audio::Mixer *mixer) {
_mixer = mixer;
_vocOffset = 0;
}
@@ -54,7 +54,7 @@ void SoundManager::setVOCOffset(int offset) {
}
Common::String SoundManager::getVOCFileName(int idx) {
- assert (idx >= 0);
+ assert(idx >= 0);
return Common::String::format("%s.voc", SZ_FILENAMES[idx]);
}