1
0
mirror of synced 2024-11-30 18:24:35 +01:00
This commit is contained in:
ptmaster 2024-03-26 13:53:16 +00:00
parent 978487b865
commit 8a935c22ea

View File

@ -162,7 +162,7 @@ HOOK_DYNAMIC (i64, __fastcall, copy_data, i64, void *dest, int length) {
std::stringstream ss;
ss << std::hex << std::setfill('0');
for (const auto& byte : bytes) {
for (const auto& byte : byteBuffer) {
ss << std::setw(2) << static_cast<int>(byte);
}