From 8a935c22eaf9e4b259ce6de81fed3895af410724 Mon Sep 17 00:00:00 2001 From: ptmaster <52694802+lty2008one@users.noreply.github.com> Date: Tue, 26 Mar 2024 13:53:16 +0000 Subject: [PATCH] fix --- src/patches/qr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/patches/qr.cpp b/src/patches/qr.cpp index ca97464..48c2f1a 100644 --- a/src/patches/qr.cpp +++ b/src/patches/qr.cpp @@ -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(byte); }