diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-07-03 13:37:57 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-07-03 13:37:57 +0000 |
| commit | f4d4a6ab60960385b99fd43d8e1d0213bdf1aec3 (patch) | |
| tree | a17522b121489fe8c52c40bd03f1ede2ccfcf8ab /apps/tagtree.c | |
| parent | 6fd40a57b81484a57f1c5a8ddbd48855a89e660f (diff) | |
| download | rockbox-f4d4a6ab60960385b99fd43d8e1d0213bdf1aec3.zip rockbox-f4d4a6ab60960385b99fd43d8e1d0213bdf1aec3.tar.gz rockbox-f4d4a6ab60960385b99fd43d8e1d0213bdf1aec3.tar.bz2 rockbox-f4d4a6ab60960385b99fd43d8e1d0213bdf1aec3.tar.xz | |
Implement FS#8947 - Add a stub in the simulator for ata_disk_is_active. This make it possible to clean up some #ifdef SIMULATOR macros.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17927 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.c')
| -rw-r--r-- | apps/tagtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c index b8fffa9..eb9df07 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c @@ -1057,7 +1057,7 @@ static int retrieve_entries(struct tree_context *c, struct tagcache_search *tcs, /* Show search progress straight away if the disk needs to spin up, otherwise show it after the normal 1/2 second delay */ show_search_progress( -#if !defined(HAVE_FLASH_STORAGE) && !defined(SIMULATOR) +#if !defined(HAVE_FLASH_STORAGE) ata_disk_is_active() #else true |