Refactor ProcessLogWrite to no longer use type

This commit is contained in:
Akkadius
2015-01-18 01:42:23 -06:00
parent 0926a5ded3
commit 564bff07fe
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -106,8 +106,8 @@ private:
std::string FormatDebugCategoryMessageString(uint16 log_category, std::string in_message);
void ProcessConsoleMessage(uint16 log_type, uint16 log_category, const std::string message);
void ProcessGMSay(uint16 log_type, uint16 log_category, std::string message);
void ProcessLogWrite(uint16 log_type, uint16 log_category, std::string message);
void ProcessGMSay(uint16 log_category, std::string message);
void ProcessLogWrite(uint16 log_category, std::string message);
};
extern EQEmuLogSys Log;