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.
This commit is contained in:
Lucas Guilherme
2022-04-14 16:46:16 -03:00
committed by GitHub
parent 853324ff52
commit b40c98ec98
+4 -4
View File
@@ -5,18 +5,18 @@
#define PERSES_MUTATION_START() \
{\
__nop();\
__nop();\
__debugbreak();\
__debugbreak();\
__nop();\
__nop();\
_disable();\
}
#define PERSES_MUTATION_END() \
{\
_enable();\
__debugbreak();\
__debugbreak();\
__nop();\
__nop();\
__debugbreak();\
__debugbreak();\
}