Added relative paths for DirAccess::remove()
Follows similar behaviour to DirAccess::rename()
This commit is contained in:
parent
c0382a1731
commit
d7052ddba3
4 changed files with 17 additions and 8 deletions
|
|
@ -183,12 +183,12 @@ size_t DirAccessFlash::get_space_left() {
|
|||
|
||||
Error DirAccessFlash::rename(String p_from, String p_to) {
|
||||
|
||||
return FAILED;
|
||||
ERR_FAIL_V(ERR_UNAVAILABLE);
|
||||
};
|
||||
|
||||
Error DirAccessFlash::remove(String p_name) {
|
||||
|
||||
return FAILED;
|
||||
ERR_FAIL_V(ERR_UNAVAILABLE);
|
||||
};
|
||||
|
||||
extern char* psp_drive;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue