Merge pull request #7526 from nounoursheureux/fix-getcurrentdrive
Fix _Directory::get_current_drive error condition from breaking the build
This commit is contained in:
commit
a49e75e374
1 changed files with 1 additions and 1 deletions
|
@ -1865,7 +1865,7 @@ String _Directory::get_drive(int p_drive){
|
|||
return d->get_drive(p_drive);
|
||||
}
|
||||
int _Directory::get_current_drive() {
|
||||
ERR_FAIL_COND_V(!d,"");
|
||||
ERR_FAIL_COND_V(!d,0);
|
||||
return d->get_current_drive();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue