diff options
author | archshift <admin@archshift.com> | 2014-09-07 11:50:43 -0700 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-09-08 15:43:22 -0700 |
commit | 5472fd4d9b19011a36604a9c7f9c66f3ebe84e3f (patch) | |
tree | b55a6013b561cbb1986a04f2154fe18c0774e891 /src/common/msg_handler.cpp | |
parent | 4ed24a06191a0dbf68bd72ad0fcc8d467b37f580 (diff) |
Added string_util to common, small changes in loader.cpp
Diffstat (limited to 'src/common/msg_handler.cpp')
-rw-r--r-- | src/common/msg_handler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/msg_handler.cpp b/src/common/msg_handler.cpp index 3e02ec4d70..b3556aaa81 100644 --- a/src/common/msg_handler.cpp +++ b/src/common/msg_handler.cpp @@ -72,7 +72,7 @@ bool MsgAlert(bool yes_no, int Style, const char* format, ...) va_list args; va_start(args, format); - CharArrayFromFormatV(buffer, sizeof(buffer)-1, str_translator(format).c_str(), args); + Common::CharArrayFromFormatV(buffer, sizeof(buffer)-1, str_translator(format).c_str(), args); va_end(args); ERROR_LOG(MASTER_LOG, "%s: %s", caption.c_str(), buffer); |