forked from len0rd/rockbox
Make local functions static in clock and chessbox plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31505 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c003d6c332
commit
ba03cb4aea
9 changed files with 54 additions and 53 deletions
|
@ -7,7 +7,7 @@ void counter_init(struct counter* counter){
|
|||
counter->paused=true;
|
||||
}
|
||||
|
||||
int counter_get_ticks_since_last_pause(struct counter* counter){
|
||||
static int counter_get_ticks_since_last_pause(struct counter* counter){
|
||||
if(!counter->paused)
|
||||
return(*rb->current_tick - counter->ticks_at_last_unpause);
|
||||
return(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue