From d4410ddab7f0c3931fd37bdcc23f32ab7f614b66 Mon Sep 17 00:00:00 2001 From: Jai Luthra Date: Wed, 10 Dec 2025 14:58:55 +0530 Subject: [PATCH] win: autopatch: new bytecode for 591.xx --- win/tools/autopatch/autopatch.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/win/tools/autopatch/autopatch.py b/win/tools/autopatch/autopatch.py index 7426f1b..3c290ae 100755 --- a/win/tools/autopatch/autopatch.py +++ b/win/tools/autopatch/autopatch.py @@ -53,15 +53,15 @@ def parse_args(): parser.add_argument("-S", "--search", nargs="+", default=[ - "8BF085C0750549892FEB", - "89450885C08B450C75048938EB", + "8BF04533FF85C0", + "8985ECFBFFFF85C08B85DCFBFFFF7504", ], help="representation of search pattern(s) binary string") parser.add_argument("-R", "--replacement", nargs="+", default=[ - "33C08BF0750549892FEB", - "33C08945088B450C75048938EB", + "33C08BF04533FF", + "31C08985ECFBFFFF8B85DCFBFFFF7504", ], help="representation of replacement(s) binary string") parser.add_argument("-o", "--stdout",