diff --git a/SharpLoader/Core/SourceRandomizer.cs b/SharpLoader/Core/SourceRandomizer.cs index 87a9529..123ce1e 100644 --- a/SharpLoader/Core/SourceRandomizer.cs +++ b/SharpLoader/Core/SourceRandomizer.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Globalization; using System.Linq; using System.Text; @@ -967,7 +968,7 @@ private void Proxy(ref string str) continue; } // Value proxy - if (argStr.ToCharArray().All(char.IsDigit)) + if (argStr.ToCharArray().All(char.IsDigit) || argStr.StartsWith("0x", StringComparison.OrdinalIgnoreCase)) { int arg;