From 6947bed015c33706b9a441fd47cd84f0da99097c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 19 Nov 2017 21:18:01 +0100 Subject: Pass engine name and version parts as proper strings Removes the need for _MKSTR all over the place which has the drawback of converting _MKSTR(UNKNOWN_DEFINE) to "UKNOWN_DEFINE" instead of throwing a compilation error. --- platform/osx/os_osx.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform/osx') diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm index ec8ec613d3..110cb776ee 100644 --- a/platform/osx/os_osx.mm +++ b/platform/osx/os_osx.mm @@ -1369,7 +1369,7 @@ String OS_OSX::get_cache_path() const { // Get properly capitalized engine name for system paths String OS_OSX::get_godot_dir_name() const { - return String(_MKSTR(VERSION_SHORT_NAME)).capitalize(); + return String(VERSION_SHORT_NAME).capitalize(); } String OS_OSX::get_system_dir(SystemDir p_dir) const { -- cgit v1.2.3