diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-17 23:52:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 23:52:40 -0500 |
commit | cf0daed0b810b2cb5c3643609bf9b569be2eee20 (patch) | |
tree | 987f60b1903c5a0a32147931a9e18003e2efc8f1 /src | |
parent | 32eb620ef4b7d82d10536385639641119a153fc6 (diff) | |
parent | b16c89bf659503687cef67782127e7694e98f0d3 (diff) |
Merge pull request #89 from lioncash/vi-vector
vi: Copy data directly into the std::vector within Parcel's ReadBlock function
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/vi/vi.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index cae2c4466..57ad4c59c 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -47,8 +47,9 @@ public: } std::vector<u8> ReadBlock(size_t length) { - std::vector<u8> data(length); - std::memcpy(data.data(), buffer.data() + read_index, length); + const u8* const begin = buffer.data() + read_index; + const u8* const end = begin + length; + std::vector<u8> data(begin, end); read_index += length; read_index = Common::AlignUp(read_index, 4); return data; |