diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/griffon/sound.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/engines/griffon/sound.cpp b/engines/griffon/sound.cpp index 8d3af94312..36d80d7e3c 100644 --- a/engines/griffon/sound.cpp +++ b/engines/griffon/sound.cpp @@ -222,19 +222,19 @@ void GriffonEngine::updateMusic() { haltSoundChannel(_musicChannel); if (_playingGardens) { switch (loopseta) { - case 0: - playSound(_musicGardens1); - break; - case 1: - playSound(_musicGardens2); - break; - case 2: - playSound(_musicGardens3); - break; - case 3: - playSound(_musicGardens4); - default: - break; + case 0: + playSound(_musicGardens1); + break; + case 1: + playSound(_musicGardens2); + break; + case 2: + playSound(_musicGardens3); + break; + case 3: + playSound(_musicGardens4); + default: + break; } } } |