mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[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:
parent
fb1b30b728
commit
0b4e98881f
@ -77,3 +77,8 @@ bool os_blockScreensaver()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void os_showMessage(const char * caption, const char * msg)
|
||||
{
|
||||
DEBUG_INFO("%s: %s", caption, msg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user