mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Portafix
This commit is contained in:
parent
fe1c7d2cdf
commit
90dc94a0ac
1 changed files with 5 additions and 1 deletions
|
@ -28,7 +28,11 @@
|
|||
// Simple implementations of System functions
|
||||
|
||||
void SystemToast(const char *text) {
|
||||
MessageBox(0, text, "Toast!", MB_ICONINFORMATION);
|
||||
#ifdef _WIN32
|
||||
MessageBox(0, text, "Toast!", MB_ICONINFORMATION);
|
||||
#else
|
||||
puts(text);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue