use right strings for eet loader text fetches

This commit is contained in:
zmike 2014-02-09 12:03:24 -05:00
parent 9d6043233f
commit 711fde5efd
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ _loader_fetch(Empc_Fetch_Request *req)
if (req->type == EMPC_METADATA_TYPE_IMAGE)
snprintf(buf, sizeof(buf), "%s:::%s", a ?: "", b ?: "");
else
snprintf(buf, sizeof(buf), "%s:::%s", b ?: "", c ?: "");
snprintf(buf, sizeof(buf), "%s:::%s", a ?: "", c ?: "");
free(eet_list(ef_img, buf, &num));
if (num)
{