diff gui/app/app.c @ 35541:ded4a8c2aa70

Cosmetic: Add some blank lines.
author ib
date Sun, 09 Dec 2012 13:19:42 +0000
parents e27855a45128
children 6fd886ce32b9
line wrap: on
line diff
--- a/gui/app/app.c	Sun Dec 09 12:34:37 2012 +0000
+++ b/gui/app/app.c	Sun Dec 09 13:19:42 2012 +0000
@@ -191,16 +191,19 @@
         if (guiApp.mainItems[i].message == event) {
             switch (guiApp.mainItems[i].type) {
             case itButton:
+
                 guiApp.mainItems[i].pressed = (int)state;
                 break;
 
             case itPotmeter:
             case itVPotmeter:
             case itHPotmeter:
+
                 if (state < 0.0f)
                     state = 0.0f;
                 if (state > 100.0f)
                     state = 100.0f;
+
                 guiApp.mainItems[i].value = state;
                 break;
             }
@@ -211,16 +214,19 @@
         if (guiApp.playbarItems[i].message == event) {
             switch (guiApp.playbarItems[i].type) {
             case itButton:
+
                 guiApp.playbarItems[i].pressed = (int)state;
                 break;
 
             case itPotmeter:
             case itVPotmeter:
             case itHPotmeter:
+
                 if (state < 0.0f)
                     state = 0.0f;
                 if (state > 100.0f)
                     state = 100.0f;
+
                 guiApp.playbarItems[i].value = state;
                 break;
             }