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:
parent
4fe5eb776f
commit
dc824945f5
1 changed files with 2 additions and 1 deletions
|
@ -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[]) {
|
||||
|
|
Loading…
Add table
Reference in a new issue