summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2006-08-16 04:27:33 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2006-08-16 04:27:33 +0000
commit475be662a708f11f235660c7826df908299af4c6 (patch)
treee99e34dda5ad39f9219e7788c009d45953aa4420 /apps
parent5a7883339e29cb8daab14bd9dcb7ee94ad5cbfb7 (diff)
downloadrockbox-475be662a708f11f235660c7826df908299af4c6.tar.gz
rockbox-475be662a708f11f235660c7826df908299af4c6.zip
put the timeouts back the way they were (sorry amiconn)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10603 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 1527e8abe7..dbfb74547b 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -105,7 +105,7 @@ bool dbg_os(void)
105 105
106 lcd_update(); 106 lcd_update();
107 107
108 if (action_userabort(TIMEOUT_BLOCK)) 108 if (action_userabort(HZ/10))
109 return false; 109 return false;
110 } 110 }
111 return false; 111 return false;
@@ -858,7 +858,7 @@ bool dbg_spdif(void)
858 858
859 lcd_update(); 859 lcd_update();
860 860
861 if (action_userabort(HZ/2)) 861 if (action_userabort(HZ/10))
862 return false; 862 return false;
863 } 863 }
864#ifdef HAVE_SPDIF_POWER 864#ifdef HAVE_SPDIF_POWER
@@ -1491,7 +1491,7 @@ bool dbg_mmc_info(void)
1491 static const unsigned char i_vmin[] = { 0, 1, 5, 10, 25, 35, 60, 100 }; 1491 static const unsigned char i_vmin[] = { 0, 1, 5, 10, 25, 35, 60, 100 };
1492 static const unsigned char i_vmax[] = { 1, 5, 10, 25, 35, 45, 80, 200 }; 1492 static const unsigned char i_vmax[] = { 1, 5, 10, 25, 35, 45, 80, 200 };
1493 static const unsigned char *kbit_units[] = { "kBit/s", "MBit/s", "GBit/s" }; 1493 static const unsigned char *kbit_units[] = { "kBit/s", "MBit/s", "GBit/s" };
1494 static const unsigned char *nsec_units[] = { "ns", "µs", "ms" }; 1494 static const unsigned char *nsec_units[] = { "ns", "s", "ms" };
1495 1495
1496 card_name[6] = '\0'; 1496 card_name[6] = '\0';
1497 1497
@@ -1949,7 +1949,7 @@ bool dbg_fm_radio(void)
1949 1949
1950 lcd_update(); 1950 lcd_update();
1951 1951
1952 if (action_userabort(TIMEOUT_BLOCK)) 1952 if (action_userabort(HZ))
1953 return false; 1953 return false;
1954 } 1954 }
1955 return false; 1955 return false;