Revert "Initial Android Support"

This commit is contained in:
DecalOverdose
2026-04-05 21:16:01 +04:00
committed by GitHub
parent 1f928fd28a
commit e452788fff
838 changed files with 30 additions and 193080 deletions

View File

@@ -205,10 +205,7 @@ bool File::mkdirs() const {
return false;
}
// Previous behavior could return false even if the directory did not exist
// and was successfully created, at least this happens on Android
fs::create_directories(path, error);
return !error;
return fs::create_directories(path, error);
}
/*