From 7f77aba7eb88ba5f8c5dbdb999c67f69b9057bd8 Mon Sep 17 00:00:00 2001 From: lizzie Date: Fri, 3 Jul 2026 17:54:39 +0000 Subject: [PATCH] dx --- src/core/hle/kernel/svc/svc_exception.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/hle/kernel/svc/svc_exception.cpp b/src/core/hle/kernel/svc/svc_exception.cpp index 55ba54858c..4f214c6142 100644 --- a/src/core/hle/kernel/svc/svc_exception.cpp +++ b/src/core/hle/kernel/svc/svc_exception.cpp @@ -43,9 +43,6 @@ void Break(Core::System& system, BreakReason reason, u64 info1, u64 info2) { for (std::size_t i = 0; i < debug_buffer.size(); i++) { hexdump += fmt::format("{:02X} ", debug_buffer[i]); if ((i + 1) % 32 == 0) { - char tmp[32]; - for (std::size_t j = 0; j < 32; ++j) - tmp[j] = debug_buffer[(i + 1) - 32 + j]; hexdump += '\n'; } }