From 94275203902d626a07f7e614fca52af3fb9e6c43 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 31 Aug 2024 16:40:37 +0200 Subject: [PATCH] Remove logging --- src/windows_emulator/module_mapper.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/windows_emulator/module_mapper.cpp b/src/windows_emulator/module_mapper.cpp index d5642f30..d5e25a73 100644 --- a/src/windows_emulator/module_mapper.cpp +++ b/src/windows_emulator/module_mapper.cpp @@ -70,9 +70,6 @@ namespace const auto data_size = relocation->SizeOfBlock - sizeof(IMAGE_BASE_RELOCATION); const auto entry_count = data_size / sizeof(uint16_t); - printf("Applying relocations %lX - %lX - %lld\n", relocation->VirtualAddress, relocation->SizeOfBlock, - entry_count); - const auto entry_start = offset_pointer(relocation, sizeof(IMAGE_BASE_RELOCATION)); const auto entries = std::span(entry_start, entry_count);