mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
use memcpy instead of WriteProcessMemory
This commit is contained in:
parent
681fb481a9
commit
8f5c229f7c
1 changed files with 4 additions and 6 deletions
|
@ -57,12 +57,10 @@ extern "C" __declspec(dllexport) DWORD WINAPI loadGeode(void* arg) {
|
|||
};
|
||||
|
||||
DWORD oldProtect;
|
||||
bool res = true;
|
||||
res = res && VirtualProtectEx(process, patchAddr, patchLength, PAGE_EXECUTE_READWRITE, &oldProtect);
|
||||
res = res && WriteProcessMemory(process, patchAddr, patchBytes, patchLength, nullptr);
|
||||
res = res && VirtualProtectEx(process, patchAddr, patchLength, oldProtect, &oldProtect);
|
||||
|
||||
if (!res) {
|
||||
if (VirtualProtectEx(process, patchAddr, patchLength, PAGE_EXECUTE_READWRITE, &oldProtect)) {
|
||||
std::memcpy(patchAddr, patchBytes, patchLength);
|
||||
VirtualProtectEx(process, patchAddr, patchLength, oldProtect, &oldProtect);
|
||||
} else {
|
||||
LoaderImpl::get()->platformMessageBox(
|
||||
"Unable to Load Geode!",
|
||||
"There was an unknown fatal error hooking "
|
||||
|
|
Loading…
Add table
Reference in a new issue