1
0
Fork 0
forked from len0rd/rockbox

Made the sleep code a little bit less aggressive.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2220 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-09-06 23:55:52 +00:00
parent 3e92ef43ae
commit 8e96c47ff0

View file

@ -473,7 +473,7 @@ static void ata_thread(void)
break; break;
case Q_SLEEP: case Q_SLEEP:
last_disk_activity = current_tick - sleep_timeout; last_disk_activity = current_tick - sleep_timeout + (HZ/2);
break; break;
} }
} }