summaryrefslogtreecommitdiffstats
path: root/modules/mono/glue/GodotSharp/GodotSharp/Core/GodotObject.exceptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mono/glue/GodotSharp/GodotSharp/Core/GodotObject.exceptions.cs')
-rw-r--r--modules/mono/glue/GodotSharp/GodotSharp/Core/GodotObject.exceptions.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/GodotObject.exceptions.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/GodotObject.exceptions.cs
index a7640043ce..8195828de9 100644
--- a/modules/mono/glue/GodotSharp/GodotSharp/Core/GodotObject.exceptions.cs
+++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/GodotObject.exceptions.cs
@@ -1,4 +1,5 @@
using System;
+using System.Globalization;
using System.Text;
#nullable enable
@@ -73,7 +74,7 @@ namespace Godot
if (!string.IsNullOrEmpty(_nativeClassName))
{
- sb.Append($" (Method '{_nativeClassName}')");
+ sb.Append(CultureInfo.InvariantCulture, $" (Method '{_nativeClassName}')");
}
return sb.ToString();
@@ -131,7 +132,7 @@ namespace Godot
if (!string.IsNullOrEmpty(_nativeMethodName))
{
- sb.Append($" (Method '{_nativeMethodName}')");
+ sb.Append(CultureInfo.InvariantCulture, $" (Method '{_nativeMethodName}')");
}
return sb.ToString();