git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28646 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-11-23 00:25:48 +00:00
parent 893d2f37ba
commit 1e0006b008

View file

@ -768,6 +768,7 @@ static bool retrieve(struct tagcache_search *tcs, struct index_entry *idx,
static long read_numeric_tag(int tag, int idx_id, const struct index_entry *idx) static long read_numeric_tag(int tag, int idx_id, const struct index_entry *idx)
{ {
#ifdef __PCTOOL__
if (! COMMAND_QUEUE_IS_EMPTY) if (! COMMAND_QUEUE_IS_EMPTY)
{ {
/* Attempt to find tag data through store-to-load forwarding in /* Attempt to find tag data through store-to-load forwarding in
@ -802,6 +803,7 @@ static long read_numeric_tag(int tag, int idx_id, const struct index_entry *idx)
return result; return result;
} }
} }
#endif
return idx->tag_seek[tag]; return idx->tag_seek[tag];
} }