Common/MemoryPatches: Silence variable shadowing warnings

This commit is contained in:
Lioncash
2018-06-19 21:21:52 -04:00
parent 18c3e0302f
commit dddac76b8c
2 changed files with 5 additions and 5 deletions

View File

@ -20,8 +20,8 @@ struct MemoryPatch
Disabled
};
MemoryPatch(u32 address, std::vector<u8> value);
MemoryPatch(u32 address, u32 value);
MemoryPatch(u32 address_, std::vector<u8> value_);
MemoryPatch(u32 address_, u32 value_);
u32 address;
std::vector<u8> value;