Index: status.c =================================================================== RCS file: /cvsroot/rockbox/apps/status.c,v retrieving revision 1.52 diff -u -r1.52 status.c --- status.c 12 May 2004 14:21:35 -0000 1.52 +++ status.c 13 May 2004 19:41:31 -0000 @@ -156,8 +156,12 @@ info.battlevel = battery_charge_step * 34; if (info.battlevel > 100) info.battlevel = 100; + /* Patch 953535: + * shows current battery state with charging animation */ + if ( 4 == battery_charge_step || 5 == battery_charge_step ) + info.battlevel = battery_level(); if(TIME_AFTER(current_tick, switch_tick)) { - battery_charge_step=(battery_charge_step+1)%4; + battery_charge_step=(battery_charge_step+1)%6; switch_tick = current_tick + HZ; } }