diff options
author | Johannes Schickel | 2016-01-12 11:49:00 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-01-12 11:49:00 +0100 |
commit | 575bcb54a2df957d4b3107bbcfa703364dfc69ba (patch) | |
tree | 3e22cf6831f7113464a8c663ff04cbd4badc381a /engines/voyeur | |
parent | 8584315867961a01210bf961a490216e0308f6eb (diff) | |
download | scummvm-rg350-575bcb54a2df957d4b3107bbcfa703364dfc69ba.tar.gz scummvm-rg350-575bcb54a2df957d4b3107bbcfa703364dfc69ba.tar.bz2 scummvm-rg350-575bcb54a2df957d4b3107bbcfa703364dfc69ba.zip |
VOYEUR: Fix formatting in sound.cpp.
Diffstat (limited to 'engines/voyeur')
-rw-r--r-- | engines/voyeur/sound.cpp | 4 |
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]); } |