diff options
author | Thomas Martitz <kugel@rockbox.org> | 2009-06-22 18:40:49 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2009-06-22 18:40:49 +0000 |
commit | 659425f23e9c8fecab41de2da9c92b3ddc2a5172 (patch) | |
tree | 0f71c35b90d469217d18b44b75b31c4fe8f51c47 /apps/recorder/albumart.c | |
parent | 67c86a76d989430dbb87d95d5a0f280e3c3b458f (diff) |
Redo r21460 and r21462 so that it doesn't introduce a new #define. Patch by Jeffrey Goode, taken from FS#10366.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21467 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/albumart.c')
-rw-r--r-- | apps/recorder/albumart.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c index e3cb5f1098..6bd2adade3 100644 --- a/apps/recorder/albumart.c +++ b/apps/recorder/albumart.c @@ -34,12 +34,6 @@ /*#define LOGF_ENABLE*/ #include "logf.h" -#ifdef SIMULATOR -#define LOGFQUEUE logf -#else -#define LOGFQUEUE(...) -#endif - #if defined(HAVE_JPEG) || defined(PLUGIN) #define USE_JPEG_COVER #endif @@ -273,7 +267,7 @@ bool search_albumart_files(const struct mp3entry *id3, const char *size_string, return false; strncpy(buf, path, buflen); - LOGFQUEUE("Album art found: %s", path); + logf("Album art found: %s", path); return true; } @@ -292,7 +286,7 @@ bool find_albumart(const struct mp3entry *id3, char *buf, int buflen) if (!data) return false; - LOGFQUEUE("Looking for album art for %s", id3->path); + logf("Looking for album art for %s", id3->path); /* Write the size string, e.g. ".100x100". */ snprintf(size_string, sizeof(size_string), ".%dx%d", |