Release 1.9.7.0 - Summer Update 2025

This commit is contained in:
Regalis11
2025-06-17 16:38:11 +03:00
parent 22227f13e5
commit ea5a2bc693
297 changed files with 7344 additions and 2421 deletions
@@ -10,6 +10,8 @@ namespace Steamworks
{
public static partial class Utility
{
public static readonly Encoding Utf8NoBom = new UTF8Encoding( false, false );
static internal T? ToType<T>( this IntPtr ptr )
{
if ( ptr == IntPtr.Zero )
@@ -111,7 +113,7 @@ namespace Steamworks
i++;
}
return Encoding.UTF8.GetString( readBuffer, 0, i );
return Utf8NoBom.GetString( readBuffer, 0, i );
}
}
}