mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
More asterisks
This commit is contained in:
parent
78aa398e7c
commit
3e283ea9f1
33 changed files with 140 additions and 140 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue