HUGO: Replace vsprintf by Common::String::vformat

This commit is contained in:
Max Horn 2011-03-18 14:41:54 +01:00
parent 5455fc5ff4
commit fcc5580d9f

View File

@ -391,6 +391,8 @@ void Parser::command(const char *format, ...) {
va_list marker;
va_start(marker, format);
// TODO:
// _vm->_line = Common::String::vformat(format, marker);
vsprintf(_vm->_line, format, marker);
va_end(marker);