A few minor fixes + buildfix

This commit is contained in:
Henrik Rydgard
2012-11-10 23:44:14 +01:00
parent 54329ad560
commit 343b9435b9
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -512,7 +512,7 @@ std::vector<PSPFileInfo> ISOFileSystem::GetDirListing(std::string path)
{
TreeEntry *e = entry->children[i];
if(!strcmp(e->name, ".") || !strcmp(e->name, "..")) // do not include the relative entries in the list
if(!strcmp(e->name.c_str(), ".") || !strcmp(e->name.c_str(), "..")) // do not include the relative entries in the list
continue;
PSPFileInfo x;