[PSP] fix path_stat

This commit is contained in:
radius 2015-09-24 21:11:17 -05:00
parent dc9044c6b7
commit a2a00b28a0

View File

@ -88,7 +88,7 @@ static bool path_stat(const char *path, enum stat_mode mode)
if (tmp[len-1] == '/')
tmp[len-1]='\0';
if (sceIoGetstat(path, &buf) < 0)
if (sceIoGetstat(tmp, &buf) < 0)
{
free(tmp);
return false;