You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Remove meaningless parameter from bindings
This commit is contained in:
@@ -2344,10 +2344,10 @@ Error _Directory::change_dir(String p_dir) {
|
||||
ERR_FAIL_COND_V_MSG(!d, ERR_UNCONFIGURED, "Directory must be opened before use.");
|
||||
return d->change_dir(p_dir);
|
||||
}
|
||||
String _Directory::get_current_dir(bool p_include_drive) {
|
||||
String _Directory::get_current_dir() {
|
||||
|
||||
ERR_FAIL_COND_V_MSG(!d, "", "Directory must be opened before use.");
|
||||
return d->get_current_dir(p_include_drive);
|
||||
return d->get_current_dir();
|
||||
}
|
||||
Error _Directory::make_dir(String p_dir) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user