You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Fix missed renamings from empty() to is_empty()
Those were missed in #44401 or added by later PRs.
This commit is contained in:
@@ -134,7 +134,7 @@ String determine_app_native_lib_dir() {
|
||||
}
|
||||
|
||||
String get_app_native_lib_dir() {
|
||||
if (app_native_lib_dir_cache.empty())
|
||||
if (app_native_lib_dir_cache.is_empty())
|
||||
app_native_lib_dir_cache = determine_app_native_lib_dir();
|
||||
return app_native_lib_dir_cache;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user