Merge branch 'dev' of https://github.com/midwan/amiberry into dev
This commit is contained in:
commit
9067ea2a74
1 changed files with 6 additions and 0 deletions
|
@ -624,6 +624,12 @@ void gui_message(const char* format, ...)
|
||||||
vsprintf(msg, format, parms);
|
vsprintf(msg, format, parms);
|
||||||
va_end(parms);
|
va_end(parms);
|
||||||
|
|
||||||
|
if (!uae_gui)
|
||||||
|
{
|
||||||
|
// GUI screen is not initialized, output message to the console instead
|
||||||
|
printf("%s\n", msg);
|
||||||
|
return;
|
||||||
|
}
|
||||||
InGameMessage(msg);
|
InGameMessage(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue