Explorar o código

Merge pull request #30050 from njt1982/30050-identifier-fix

iOS export: invalid identifier, the character '-' is not allowed
Rémi Verschelde %!s(int64=6) %!d(string=hai) anos
pai
achega
c93bea312f
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      platform/iphone/export/export.cpp

+ 2 - 2
platform/iphone/export/export.cpp

@@ -125,7 +125,7 @@ class EditorExportPlatformIOS : public EditorExportPlatform {
 				first = true;
 				continue;
 			}
-			if (!((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '_')) {
+			if (!((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '-')) {
 				if (r_error) {
 					*r_error = vformat(TTR("The character '%s' is not allowed in Identifier."), String::chr(c));
 				}
@@ -137,7 +137,7 @@ class EditorExportPlatformIOS : public EditorExportPlatform {
 				}
 				return false;
 			}
-			if (first && c == '_') {
+			if (first && c == '-') {
 				if (r_error) {
 					*r_error = vformat(TTR("The character '%s' cannot be the first character in a Identifier segment."), String::chr(c));
 				}