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
This commit is contained in:
parent
5a7883339e
commit
475be662a7
1 changed files with 4 additions and 4 deletions
|
@ -105,7 +105,7 @@ bool dbg_os(void)
|
|||
|
||||
lcd_update();
|
||||
|
||||
if (action_userabort(TIMEOUT_BLOCK))
|
||||
if (action_userabort(HZ/10))
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
|
@ -858,7 +858,7 @@ bool dbg_spdif(void)
|
|||
|
||||
lcd_update();
|
||||
|
||||
if (action_userabort(HZ/2))
|
||||
if (action_userabort(HZ/10))
|
||||
return false;
|
||||
}
|
||||
#ifdef HAVE_SPDIF_POWER
|
||||
|
@ -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", "s", "ms" };
|
||||
|
||||
card_name[6] = '\0';
|
||||
|
||||
|
@ -1949,7 +1949,7 @@ bool dbg_fm_radio(void)
|
|||
|
||||
lcd_update();
|
||||
|
||||
if (action_userabort(TIMEOUT_BLOCK))
|
||||
if (action_userabort(HZ))
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue