changeset 3114:d243a544f60b

Warning fix from Mark Loeser <halcy0n@gentoo.org>.
author Tony Vroon <chainsaw@gentoo.org>
date Mon, 04 May 2009 01:06:21 +0100
parents 90cdddf6f1c1
children 3b4841de4255
files src/adplug/core/lds.cxx
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/adplug/core/lds.cxx	Mon May 04 00:00:36 2009 +0100
+++ b/src/adplug/core/lds.cxx	Mon May 04 01:06:21 2009 +0100
@@ -259,8 +259,11 @@
         comhi = comword >> 8;
         comlo = comword & 0xff;
         if (comword)
+        {
           if (comhi == 0x80)
+          {
             c->packwait = comlo;
+          }
           else if (comhi >= 0x80)
           {
             switch (comhi)
@@ -384,6 +387,7 @@
               c->chancheat.high = high;
             }
           }
+        }
 
         c->packpos++;
       }