More asterisks

This commit is contained in:
mathieui
2016-01-21 21:16:51 +01:00
parent 78aa398e7c
commit 3e283ea9f1
33 changed files with 140 additions and 140 deletions

View File

@ -8,7 +8,7 @@
#include <Windows.h>
struct PatchInfo {
const wchar_t *module_name;
const wchar_t* module_name;
u32 checksum;
u32 rva;
u32 length;
@ -35,7 +35,7 @@ bool ApplyPatch(const PatchInfo &patch) {
return false;
}
void *patch_addr = (void *)((uintptr_t)module + patch.rva);
void* patch_addr = (void *)((uintptr_t)module + patch.rva);
size_t patch_size = patch.length;
DWORD old_protect;