sprintf -> vsprintf, oops. Requires a recompile, but at least

fatalerrors will have the right text.
This commit is contained in:
Aaron Giles 2010-01-10 21:48:28 +00:00
parent 567ab7c3c8
commit c845d1c4fd

View File

@ -272,7 +272,7 @@ public:
{
va_list ap;
va_start(ap, format);
sprintf(text, format, ap);
vsprintf(text, format, ap);
va_end(ap);
osd_break_into_debugger(text);
}