comparison gui/app/app.c @ 36860:d66aef85ae31

Fix copy and paste error. This has happened in r36954.
author ib
date Fri, 28 Feb 2014 14:30:20 +0000
parents 9bc711c42ea6
children bade5683ca70
comparison
equal deleted inserted replaced
36859:9bc711c42ea6 36860:d66aef85ae31
250 if (hasButton(guiApp.mainItems[i])) 250 if (hasButton(guiApp.mainItems[i]))
251 guiApp.mainItems[i].pressed = state; 251 guiApp.mainItems[i].pressed = state;
252 252
253 for (i = 0; i <= guiApp.IndexOfPlaybarItems; i++) 253 for (i = 0; i <= guiApp.IndexOfPlaybarItems; i++)
254 if (guiApp.playbarItems[i].message == event) 254 if (guiApp.playbarItems[i].message == event)
255 if (hasButton(guiApp.mainItems[i])) 255 if (hasButton(guiApp.playbarItems[i]))
256 guiApp.playbarItems[i].pressed = state; 256 guiApp.playbarItems[i].pressed = state;
257 } 257 }