changeset 3026:d49fca0fc7fd

Add explicit braces to outer if statement.
author Tony Vroon <chainsaw@gentoo.org>
date Fri, 10 Apr 2009 00:12:59 +0100
parents f27d73fb0bcd
children 3b200cf6d1b7
files src/adplug/core/lds.cxx
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/adplug/core/lds.cxx	Fri Apr 10 00:06:46 2009 +0100
+++ b/src/adplug/core/lds.cxx	Fri Apr 10 00:12:59 2009 +0100
@@ -205,6 +205,7 @@
 
   // handle fading
   if (fadeonoff)
+  {
     if (fadeonoff <= 128)
     {
       if (allvolume > fadeonoff || allvolume == 0)
@@ -231,6 +232,7 @@
       allvolume = mainvolume;
       fadeonoff = 0;
     }
+  }
 
   // handle channel delay
   for (chan = 0; chan < 9; chan++)