Fix link errors.

This commit is contained in:
Nicholas Hastings 2014-08-17 11:11:55 -04:00
parent e4645332aa
commit e9ba251c1c
3 changed files with 2 additions and 3 deletions

View File

@ -474,7 +474,7 @@ void Logger::_PrintToGameLog(const char *fmt, va_list ap)
msg[len++] = '\n';
msg[len] = '\0';
Engine_LogPrintWrapper(msg);
smcore.LogToGame(msg);
}
const char *Logger::GetLogFileName(LogType type) const

View File

@ -106,8 +106,6 @@ private:
bool m_InitialState;
};
void Engine_LogPrintWrapper(const char *msg);
extern Logger g_Logger;
#endif // _INCLUDE_SOURCEMOD_CLOGGER_H_

View File

@ -73,6 +73,7 @@ ISourcePawnEngine *g_pSourcePawn;
ISourcePawnEngine2 *g_pSourcePawn2;
CNativeOwner g_CoreNatives;
IScriptManager *scripts = &g_PluginSys;
IExtensionSys *extsys = &g_Extensions;
ILogger *logger = &g_Logger;
static void AddCorePhraseFile(const char *filename)