diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2008-05-09 16:57:26 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2008-05-09 16:57:26 +0000 |
| commit | c85faed1ee3205d99c1ec053fc5af28d59ac0ab3 (patch) | |
| tree | 06df959c1d841116f5992aee9674dc6f9e3cec7e /apps | |
| parent | 55129ad3c37d818bfb7d9ac6b65d34eba604f51d (diff) | |
| download | rockbox-c85faed1ee3205d99c1ec053fc5af28d59ac0ab3.zip rockbox-c85faed1ee3205d99c1ec053fc5af28d59ac0ab3.tar.gz rockbox-c85faed1ee3205d99c1ec053fc5af28d59ac0ab3.tar.bz2 rockbox-c85faed1ee3205d99c1ec053fc5af28d59ac0ab3.tar.xz | |
Change comment for clarity.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17431 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 81ea97f..2cc000d 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -375,7 +375,7 @@ static bool dbg_buffering_thread(void) if (ticks > 0) { - int boostquota = boost_ticks * 1000 / ticks; /* in °/oo */ + int boostquota = boost_ticks * 1000 / ticks; /* in 0.1 % */ int avgclock = freq_sum * 10 / ticks; /* in 100 kHz */ snprintf(buf, sizeof(buf), "boost ratio: %3d.%d%% (%2d.%dMHz)", boostquota/10, boostquota%10, avgclock/10, avgclock%10); |