From faa4eb55e0161b25118ecb83ea91e460143a56cd Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Thu, 21 Jun 2018 01:39:07 -0400 Subject: [PATCH] remove misleading console output --- vnr/vnrhook/src/engine/match.cc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/vnr/vnrhook/src/engine/match.cc b/vnr/vnrhook/src/engine/match.cc index 0e02246..e4cd92a 100644 --- a/vnr/vnrhook/src/engine/match.cc +++ b/vnr/vnrhook/src/engine/match.cc @@ -80,11 +80,6 @@ bool DeterminePCEngine() } if (::GetModuleHandleA("mono.dll")) { InsertMonoHooks(); - - // 3/20/2015 jichi - // Always insert GDI hooks even for Mono games - // For example: 新世黙示録 need GetGlyphOutlineA - PcHooks::hookGDIFunctions(); return true; } @@ -853,8 +848,8 @@ bool DetermineEngineType() if (!found) { // jichi 10/2/2013: Only enable it if no game engine is detected PcHooks::hookLstrFunctions(); PcHooks::hookCharNextFunctions(); - } else - ConsoleOutput("vnreng: found game engine, IGNORE non gui hooks"); + } //else + // ConsoleOutput("vnreng: found game engine, IGNORE non gui hooks"); return found; #endif // ITH_DISABLE_ENGINE }