mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 12:05:45 +00:00
HLE/FS: Corrected the error codes for DeleteFile
This commit is contained in:
parent
33fe4fe894
commit
e248331abc
6 changed files with 22 additions and 12 deletions
|
@ -83,9 +83,9 @@ public:
|
|||
/**
|
||||
* Delete a file specified by its path
|
||||
* @param path Path relative to the archive
|
||||
* @return Whether the file could be deleted
|
||||
* @return Result of the operation
|
||||
*/
|
||||
virtual bool DeleteFile(const Path& path) const = 0;
|
||||
virtual ResultCode DeleteFile(const Path& path) const = 0;
|
||||
|
||||
/**
|
||||
* Rename a File specified by its path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue