This commit is contained in:
Henrik Rydgard 2012-07-05 23:30:35 +02:00
parent fe1c7d2cdf
commit 90dc94a0ac

View file

@ -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
}