Skip to content

Commit

Permalink
Merge pull request #3 from goshathebusiness/issue-2-eu4-linux-support…
Browse files Browse the repository at this point in the history
…-broken

Fixed EU4 Linux
  • Loading branch information
IlliaYalovoi authored Sep 12, 2023
2 parents b084375 + 24e8d17 commit a6cc72f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ In other words, yes, it gives you the ability to get achievements with mods enab
Conrats, you done! In case you see unsupported version error most likely Paradox broke something and all you can do is wait until i update patch.

# Supported games and platforms
| | Windows | Linux | MacOS |
| ---| --- | ---| --- |
| Europa Universalis IV | Yes :heavy_check_mark: | Currently broken :x: | Maybe |
| Hearts of Iron IV | Yes :heavy_check_mark: | Yes :heavy_check_mark: | No :x: |
| | Windows | Linux | MacOS |
|-----------------------|------------------------|------------------------|--------|
| Europa Universalis IV | Yes :heavy_check_mark: | Yes :heavy_check_mark: | Maybe |
| Hearts of Iron IV | Yes :heavy_check_mark: | Yes :heavy_check_mark: | No :x: |

MacOS will be supported, if someone provide me executable files for analysis.
4 changes: 2 additions & 2 deletions patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ func applyPatch(test bool, originalFileName, OS string) error {
// EU4
hexExistsEU4Windows := []string{"48", "8D", "0D", "??", "??", "??", "01", "E8", "??", "??", "??", "01", "85", "C0", "0F", "94", "C3", "E8"}
hexWantedEU4Windows := []string{"48", "8D", "0D", "??", "??", "??", "01", "E8", "??", "??", "??", "01", "31", "C0", "0F", "94", "C3", "E8"}
hexExistsEU4Linux := []string{"E8", "65", "95", "E5", "FF", "89", "C3", "E8", "38", "08", "EC", "FF", "31", "F6", "85", "DB", "40", "0F", "94", "C6", "48", "89", "C7"}
hexWantedEU4Linux := []string{"E8", "65", "95", "E5", "FF", "89", "C3", "E8", "38", "08", "EC", "FF", "31", "F6", "31", "DB", "40", "0F", "94", "C6", "48", "89", "C7"}
hexExistsEU4Linux := []string{"E8", "??", "??", "E5", "FF", "89", "C3", "E8", "??", "??", "EC", "FF", "31", "F6", "85", "DB", "40", "0F", "94", "C6", "48", "89", "C7"}
hexWantedEU4Linux := []string{"E8", "??", "??", "E5", "FF", "89", "C3", "E8", "??", "??", "EC", "FF", "31", "F6", "31", "DB", "40", "0F", "94", "C6", "48", "89", "C7"}
hexExistsEU4Darwin := []string{"E8", "7A", "C5", "76", "01", "89", "C3", "E8", "93", "A6", "EC", "FF", "31", "F6", "85", "DB", "40", "0F", "94", "C6", "48", "89", "C7"}
hexWantedEU4Darwin := []string{"E8", "7A", "C5", "76", "01", "89", "C3", "E8", "93", "A6", "EC", "FF", "31", "F6", "31", "DB", "40", "0F", "94", "C6", "48", "89", "C7"}
// HOI4
Expand Down

0 comments on commit a6cc72f

Please sign in to comment.