diff --git a/engines/voyeur/sound.cpp b/engines/voyeur/sound.cpp index 0e9d35e9a6b..f47fdde3e17 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]); }