mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Portafix
This commit is contained in:
+5
-1
@@ -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
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user