FIx broken merge

This commit is contained in:
kev :) 2012-11-11 00:47:24 +00:00
parent 476f858388
commit f4ed710420

View File

@ -512,11 +512,7 @@ std::vector<PSPFileInfo> ISOFileSystem::GetDirListing(std::string path)
{
TreeEntry *e = entry->children[i];
<<<<<<< HEAD
if(e->name == "." || 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
>>>>>>> upstream/master
continue;
PSPFileInfo x;