Skip to content

Commit

Permalink
Merge pull request #48 from arthomnix/master
Browse files Browse the repository at this point in the history
Add patch for Unity 2019.4 on Windows
  • Loading branch information
aevitas committed Jul 18, 2020
2 parents 1fbf218 + ead671c commit cb3f95c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -46,7 +46,7 @@ Currently, the following OS and Unity version combinations are supported:
|---------|:------------------:|:------------------:|:------------------:|
| 2020.2a | :x: | :white_check_mark: | :white_check_mark: |
| 2020.1b | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 2019.4 | :x: | :white_check_mark: | :white_check_mark: |
| 2019.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 2019.3 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 2019.2 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 2019.1 | :x: | :white_check_mark: | :white_check_mark: |
Expand Down
6 changes: 6 additions & 0 deletions src/Patcher/Patches.cs
Expand Up @@ -39,6 +39,12 @@ public static class Patches
DarkPattern = new byte[] {0x74, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49}
},
new PatchInfo
{
Version = "2019.4",
LightPattern = new byte[] {0x75, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49},
DarkPattern = new byte[] {0x74, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49}
},
new PatchInfo
{
Version = "2020.1",
LightPattern = new byte[] {0x75, 0x15, 0x33, 0xC0, 0xEB, 0x13, 0x90, 0x49},
Expand Down

0 comments on commit cb3f95c

Please sign in to comment.