Skip to content

Commit

Permalink
Update for v2019.1.0f2 fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
aevitas committed May 12, 2019
1 parent 39c1603 commit ea21cf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Patcher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ namespace Patcher
class Program
{
// When the editor is currently using the light theme, you'll find the light pattern. If it's set to the dark pattern, you'll find the dark one.
private static readonly byte[] _lightPattern = { 0x75, 0x08, 0x33, 0xC0, 0x48, 0x83, 0xC4, 0x20, 0x5B, 0xC3, 0x8B, 0x03, 0x48, 0x83, 0xC4, 0x20, 0x5B, 0xC3 };
private static readonly byte[] _darkPattern = { 0x74, 0x08, 0x33, 0xC0, 0x48, 0x83, 0xC4, 0x20, 0x5B, 0xC3, 0x8B, 0x03, 0x48, 0x83, 0xC4, 0x20, 0x5B, 0xC3 };
private static readonly byte[] _lightPattern = { 0x74, 0x04, 0x33, 0xC0, 0xEB, 0x02, 0x8B, 0x07 };
private static readonly byte[] _darkPattern = { 0x75, 0x04, 0x33, 0xC0, 0xEB, 0x02, 0x8B, 0x07 };

static void Main(string[] args)
{
Expand Down

0 comments on commit ea21cf5

Please sign in to comment.