mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
Fix sceIoRemove() on Windows infinite looping.
This commit is contained in:
parent
a64890d3c3
commit
965592eda8
@ -92,7 +92,7 @@ bool DirectoryFileSystem::DeleteFile(const std::string &filename)
|
||||
{
|
||||
std::string fullName = GetLocalPath(filename);
|
||||
#ifdef _WIN32
|
||||
return DeleteFile(fullName.c_str()) == TRUE;
|
||||
return ::DeleteFile(fullName.c_str()) == TRUE;
|
||||
#else
|
||||
return 0 == unlink(fullName.c_str());
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user