VOYEUR: Fix formatting in sound.cpp.

This commit is contained in:
Johannes Schickel 2016-01-12 11:49:00 +01:00
parent 8584315867
commit 575bcb54a2

View File

@ -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]);
}