[host] app: add os_showMessage for Linux

Linux doesn't have a generic way to show a dialog box, so we just use
DEBUG_INFO to print the message out to the console.
This commit is contained in:
Geoffrey McRae 2021-06-04 12:39:11 +10:00
parent fb1b30b728
commit 0b4e98881f

View File

@ -77,3 +77,8 @@ bool os_blockScreensaver()
{
return false;
}
void os_showMessage(const char * caption, const char * msg)
{
DEBUG_INFO("%s: %s", caption, msg);
}