diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-06-19 21:21:52 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-06-19 21:33:50 -0400 |
| commit | dddac76b8ce68ddf3f6fdfbe8e5ed0c992ceef46 (patch) | |
| tree | 28897c7a0bb129506e3be71db4216579c1b07f9c /Source/Core/Common/Debug/MemoryPatches.cpp | |
| parent | 18c3e0302f6bca8546516173f4cb3ab0aa896a90 (diff) | |
Common/MemoryPatches: Silence variable shadowing warnings
Diffstat (limited to 'Source/Core/Common/Debug/MemoryPatches.cpp')
| -rw-r--r-- | Source/Core/Common/Debug/MemoryPatches.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Common/Debug/MemoryPatches.cpp b/Source/Core/Common/Debug/MemoryPatches.cpp index 38f96863d0..9b49929d4e 100644 --- a/Source/Core/Common/Debug/MemoryPatches.cpp +++ b/Source/Core/Common/Debug/MemoryPatches.cpp @@ -15,9 +15,9 @@ MemoryPatch::MemoryPatch(u32 address_, std::vector<u8> value_) { } -MemoryPatch::MemoryPatch(u32 address, u32 value) - : MemoryPatch(address, {static_cast<u8>(value >> 24), static_cast<u8>(value >> 16), - static_cast<u8>(value >> 8), static_cast<u8>(value)}) +MemoryPatch::MemoryPatch(u32 address_, u32 value_) + : MemoryPatch(address_, {static_cast<u8>(value_ >> 24), static_cast<u8>(value_ >> 16), + static_cast<u8>(value_ >> 8), static_cast<u8>(value_)}) { } |
