Handle disk full more properly in sceIoWrite().

This commit is contained in:
Unknown W. Brackets
2014-11-02 10:55:27 -08:00
parent 24ce3d11ed
commit d4e8bd96af
5 changed files with 22 additions and 5 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ namespace
size_t result = pspFileSystem.WriteFile(handle, data, dataSize);
pspFileSystem.CloseFile(handle);
return result != 0;
return result == dataSize;
}
bool PSPMatch(std::string text, std::string regexp)