mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Minor code formatting in platform/android
This commit is contained in:
parent
ad55c63918
commit
beaa56bff2
13 changed files with 69 additions and 47 deletions
|
|
@ -61,6 +61,7 @@ String DirAccessAndroid::get_next(){
|
|||
|
||||
|
||||
}
|
||||
|
||||
bool DirAccessAndroid::current_is_dir() const{
|
||||
|
||||
String sd;
|
||||
|
|
@ -79,9 +80,11 @@ bool DirAccessAndroid::current_is_dir() const{
|
|||
return false;
|
||||
|
||||
}
|
||||
|
||||
bool DirAccessAndroid::current_is_hidden() const{
|
||||
return current!="." && current!=".." && current.begins_with(".");
|
||||
}
|
||||
|
||||
void DirAccessAndroid::list_dir_end(){
|
||||
|
||||
if (aad==NULL)
|
||||
|
|
@ -96,6 +99,7 @@ int DirAccessAndroid::get_drive_count(){
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
String DirAccessAndroid::get_drive(int p_drive){
|
||||
|
||||
return "";
|
||||
|
|
@ -164,6 +168,7 @@ Error DirAccessAndroid::rename(String p_from, String p_to){
|
|||
|
||||
ERR_FAIL_V(ERR_UNAVAILABLE);
|
||||
}
|
||||
|
||||
Error DirAccessAndroid::remove(String p_name){
|
||||
|
||||
ERR_FAIL_V(ERR_UNAVAILABLE);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue