From e16535da8252f1fa03cfffa0d4efd070321b351c Mon Sep 17 00:00:00 2001 From: Vladislav Yarmak Date: Fri, 22 Nov 2019 21:14:25 +0000 Subject: [PATCH] ap: relax search pattern a little --- 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 93b7f13..e298d2c 100755 --- a/win/tools/autopatch/autopatch.py +++ b/win/tools/autopatch/autopatch.py @@ -54,15 +54,15 @@ def parse_args(): parser.add_argument("-S", "--search", nargs="+", default=[ - "8BF085C0750549892FEB21", - "89450885C075048937EB22", + "8BF085C0750549892FEB", + "89450885C075048937EB", ], help="representation of search pattern(s) binary string") parser.add_argument("-R", "--replacement", nargs="+", default=[ - "33C08BF0750549892FEB21", - "33C089450875048937EB22", + "33C08BF0750549892FEB", + "33C089450875048937EB", ], help="representation of replacement(s) binary string") parser.add_argument("-o", "--stdout",