From 409ad121ae840135a1e89d1088164b329d098641 Mon Sep 17 00:00:00 2001 From: Jazzinghen Date: Sat, 23 May 2020 23:25:45 +0900 Subject: [PATCH] Removed debug message --- texthook/engine/engine.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/texthook/engine/engine.cc b/texthook/engine/engine.cc index 3884f07..2b8cf29 100644 --- a/texthook/engine/engine.cc +++ b/texthook/engine/engine.cc @@ -6744,12 +6744,6 @@ bool InsertTokyoNecroHook() { } addr += addr_offset; - std::stringstream stream; - stream << std::hex << addr; - std::string debugOut = "vnreng: TokyoNecro. Hook address: " + - stream.str(); - ConsoleOutput(debugOut.c_str()); - enum { push_ebp = 0x55 }; // OPCode for function begin if (*(BYTE *)addr != push_ebp) { // This should never happen