1
0
Fork 0

Fixed messages when running non-debug mode (under linux)

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1165
This commit is contained in:
Peter Veenstra 2003-07-26 18:39:20 +00:00
parent 4fe5eb776f
commit dc824945f5

View file

@ -559,8 +559,9 @@ void GFX_ShowMsg(char * format,...) {
va_list msg;
va_start(msg,format);
vsprintf(buf,format,msg);
strcat(buf,"\n");
va_end(msg);
printf(buf);
printf(buf);
};
int main(int argc, char* argv[]) {