diff options
| author | Hristo Kovachev <bger@rockbox.org> | 2006-08-16 07:02:46 +0000 |
|---|---|---|
| committer | Hristo Kovachev <bger@rockbox.org> | 2006-08-16 07:02:46 +0000 |
| commit | 340de14c0ea7a1d37382d09b954496ae84c67ae1 (patch) | |
| tree | 62cbd438d5a99ded49d962dafbedc04ef09e4666 /apps/debug_menu.c | |
| parent | 86ca85bef7ed0f1f565ad79dde28060ba9877834 (diff) | |
| download | rockbox-340de14c0ea7a1d37382d09b954496ae84c67ae1.zip rockbox-340de14c0ea7a1d37382d09b954496ae84c67ae1.tar.gz rockbox-340de14c0ea7a1d37382d09b954496ae84c67ae1.tar.bz2 rockbox-340de14c0ea7a1d37382d09b954496ae84c67ae1.tar.xz | |
Fix the stupid text editor's silliness and use "us" for microsec
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10605 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -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 dbfb745..ed9d723 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1491,7 +1491,7 @@ bool dbg_mmc_info(void) static const unsigned char i_vmin[] = { 0, 1, 5, 10, 25, 35, 60, 100 }; static const unsigned char i_vmax[] = { 1, 5, 10, 25, 35, 45, 80, 200 }; static const unsigned char *kbit_units[] = { "kBit/s", "MBit/s", "GBit/s" }; - static const unsigned char *nsec_units[] = { "ns", "s", "ms" }; + static const unsigned char *nsec_units[] = { "ns", "us", "ms" }; card_name[6] = '\0'; |