Fixed wrong byte order

The order of the bytes is wrong, if we compare to the file detais.hpp at line #79, the scan will never match.
master
Lucas Guilherme 2 years ago committed by GitHub
parent 853324ff52
commit b40c98ec98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,18 +5,18 @@
#define PERSES_MUTATION_START() \ #define PERSES_MUTATION_START() \
{\ {\
__nop();\
__nop();\
__debugbreak();\ __debugbreak();\
__debugbreak();\ __debugbreak();\
__nop();\
__nop();\
_disable();\ _disable();\
} }
#define PERSES_MUTATION_END() \ #define PERSES_MUTATION_END() \
{\ {\
_enable();\ _enable();\
__debugbreak();\
__debugbreak();\
__nop();\ __nop();\
__nop();\ __nop();\
} __debugbreak();\
__debugbreak();\
}

Loading…
Cancel
Save