Commit d6cb040c authored by DailyShana's avatar DailyShana

tweak

parent 84200fa1
...@@ -1320,7 +1320,7 @@ void Game::ClearCardInfo(int player) { ...@@ -1320,7 +1320,7 @@ void Game::ClearCardInfo(int player) {
stText->setText(L""); stText->setText(L"");
scrCardText->setVisible(false); scrCardText->setVisible(false);
} }
void Game::AddChatMsg(wchar_t* msg, int player) { void Game::AddChatMsg(const wchar_t* msg, int player) {
for(int i = 7; i > 0; --i) { for(int i = 7; i > 0; --i) {
chatMsg[i] = chatMsg[i - 1]; chatMsg[i] = chatMsg[i - 1];
chatTiming[i] = chatTiming[i - 1]; chatTiming[i] = chatTiming[i - 1];
...@@ -1371,8 +1371,7 @@ void Game::ClearChatMsg() { ...@@ -1371,8 +1371,7 @@ void Game::ClearChatMsg() {
chatTiming[i] = 0; chatTiming[i] = 0;
} }
} }
void Game::AddDebugMsg(char* msg) void Game::AddDebugMsg(const char* msg) {
{
if (enable_log & 0x1) { if (enable_log & 0x1) {
wchar_t wbuf[1024]; wchar_t wbuf[1024];
BufferIO::DecodeUTF8(msg, wbuf); BufferIO::DecodeUTF8(msg, wbuf);
...@@ -1384,7 +1383,7 @@ void Game::AddDebugMsg(char* msg) ...@@ -1384,7 +1383,7 @@ void Game::AddDebugMsg(char* msg)
ErrorLog(msgbuf); ErrorLog(msgbuf);
} }
} }
void Game::ErrorLog(char* msg) { void Game::ErrorLog(const char* msg) {
FILE* fp = fopen("error.log", "at"); FILE* fp = fopen("error.log", "at");
if(!fp) if(!fp)
return; return;
......
...@@ -132,10 +132,10 @@ public: ...@@ -132,10 +132,10 @@ public:
void SaveConfig(); void SaveConfig();
void ShowCardInfo(int code); void ShowCardInfo(int code);
void ClearCardInfo(int player = 0); void ClearCardInfo(int player = 0);
void AddChatMsg(wchar_t* msg, int player); void AddChatMsg(const wchar_t* msg, int player);
void ClearChatMsg(); void ClearChatMsg();
void AddDebugMsg(char* msgbuf); void AddDebugMsg(const char* msgbuf);
void ErrorLog(char* msgbuf); void ErrorLog(const char* msgbuf);
bool MakeDirectory(const std::string folder); bool MakeDirectory(const std::string folder);
void initUtils(); void initUtils();
void ClearTextures(); void ClearTextures();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment