Merge pull request #7016 from lioncash/mem

MemoryPatches: Minor changes
This commit is contained in:
JosJuice
2018-05-30 07:45:34 +02:00
committed by GitHub
2 changed files with 6 additions and 5 deletions

View File

@ -6,11 +6,12 @@
#include <algorithm> #include <algorithm>
#include <sstream> #include <sstream>
#include <utility>
namespace Common::Debug namespace Common::Debug
{ {
MemoryPatch::MemoryPatch(u32 address_, std::vector<u8> value_) MemoryPatch::MemoryPatch(u32 address_, std::vector<u8> value_)
: address(address_), value(value_), is_enabled(State::Enabled) : address(address_), value(std::move(value_))
{ {
} }

View File

@ -20,12 +20,12 @@ struct MemoryPatch
Disabled Disabled
}; };
u32 address;
std::vector<u8> value;
State is_enabled;
MemoryPatch(u32 address, std::vector<u8> value); MemoryPatch(u32 address, std::vector<u8> value);
MemoryPatch(u32 address, u32 value); MemoryPatch(u32 address, u32 value);
u32 address;
std::vector<u8> value;
State is_enabled = State::Enabled;
}; };
class MemoryPatches class MemoryPatches