mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
android fixes, please test
(can' t build android atm)
This commit is contained in:
parent
393e5605c9
commit
7ad7f2f6a9
9 changed files with 59 additions and 3 deletions
|
@ -105,6 +105,12 @@ bool DirAccessJAndroid::current_is_dir() const{
|
|||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DirAccessJAndroid::current_is_hidden() const {
|
||||
|
||||
return current!="." && current!=".." && current.begins_with(".");
|
||||
}
|
||||
|
||||
bool DirAccessAndroid::current_is_hidden() const{
|
||||
return current!="." && current!=".." && current.begins_with(".");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue