early-access version 2853
This commit is contained in:
12
externals/vcpkg/ports/distorm/fix-arm-builds.patch
vendored
Executable file
12
externals/vcpkg/ports/distorm/fix-arm-builds.patch
vendored
Executable file
@@ -0,0 +1,12 @@
|
||||
--- a/src/textdefs.c
|
||||
+++ b/src/textdefs.c
|
||||
@@ -42,7 +42,8 @@
|
||||
s->length = len * 2;
|
||||
s->p[len * 2] = 0;
|
||||
do {
|
||||
- RSHORT(&s->p[i]) = RSHORT(&TextBTable[(*buf) * 2]);
|
||||
+ s->p[i] = TextBTable[(*buf) * 2];
|
||||
+ s->p[i + 1] = TextBTable[(*buf) * 2 + 1];
|
||||
buf++;
|
||||
i += 2;
|
||||
} while (i < len * 2);
|
||||
Reference in New Issue
Block a user