From 57432118466ffe966286005919148d751005bd55 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 7 Jul 2007 23:24:36 +0000 Subject: [PATCH] removed errors on faulty gameconf sig finds - this sort of made partial inheritance awkward because an error could be thrown even if the signature was found later --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401060 --- core/GameConfigs.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/core/GameConfigs.cpp b/core/GameConfigs.cpp index f2171d84..e30d6aa9 100644 --- a/core/GameConfigs.cpp +++ b/core/GameConfigs.cpp @@ -327,13 +327,6 @@ SMCParseResult CGameConfig::ReadSMC_LeavingSection() s_TempSig.library, m_pFile); } - if (!final_addr) - { - g_Logger.LogError("[SM] Unable to find named symbol (symbol \"%s\") (library \"%s\") (gameconf \"%s\")", - &s_TempSig.sig[1], - s_TempSig.library, - m_pFile); - } } if (final_addr) { @@ -384,12 +377,6 @@ SMCParseResult CGameConfig::ReadSMC_LeavingSection() m_pFile); } else { final_addr = g_MemUtils.FindPattern(addrInBase, real_sig, real_bytes); - if (!final_addr) - { - g_Logger.LogError("[SM] Unable to find signature (name \"%s\") (gameconf \"%s\")", - m_offset, - m_pFile); - } } }