1
0
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:
Zher Huei Lee
2016-03-01 10:40:31 +00:00
parent c0382a1731
commit d7052ddba3
4 changed files with 17 additions and 8 deletions

View File

@@ -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;