You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Added relative paths for DirAccess::remove()
Follows similar behaviour to DirAccess::rename()
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user