summaryrefslogtreecommitdiffstats
path: root/core/os/os.cpp
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-31 20:14:36 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-31 20:14:36 -0500
commit163bf94d04342ad8d16086e95ea855a86d3699fc (patch)
tree6cdd9ec78a0db516c8516af7b0842b5efe426ae3 /core/os/os.cpp
parent6ca36277abcfd587c8a61193f278899ec2bc5d32 (diff)
parent38f9769bc6d560373df961880f99aaaafaae00d9 (diff)
downloadredot-engine-163bf94d04342ad8d16086e95ea855a86d3699fc.tar.gz
Merge pull request #98091 from AThousandShips/improve_err_prints_core
[Core] Improve error messages with `vformat`
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r--core/os/os.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp
index 642de11a9f..aed14d48c0 100644
--- a/core/os/os.cpp
+++ b/core/os/os.cpp
@@ -352,7 +352,7 @@ void OS::ensure_user_data_dir() {
Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
Error err = da->make_dir_recursive(dd);
- ERR_FAIL_COND_MSG(err != OK, "Error attempting to create data dir: " + dd + ".");
+ ERR_FAIL_COND_MSG(err != OK, vformat("Error attempting to create data dir: %s.", dd));
}
String OS::get_model_name() const {