diff options
author | twinaphex | 2013-05-25 23:00:18 +0200 |
---|---|---|
committer | twinaphex | 2013-05-25 23:00:18 +0200 |
commit | c8a9b436fca00b2facf28dd3098ea09e3a732709 (patch) | |
tree | 36f0fcff48f7ddf8470109fab97a40400869f713 /frontend/libretro.c | |
parent | 6790d7fdb483f965f5054b94d3508eaee1c63b3e (diff) | |
download | pcsx_rearmed-c8a9b436fca00b2facf28dd3098ea09e3a732709.tar.gz pcsx_rearmed-c8a9b436fca00b2facf28dd3098ea09e3a732709.tar.bz2 pcsx_rearmed-c8a9b436fca00b2facf28dd3098ea09e3a732709.zip |
Add system message warning if a BIOS file could not be found
Diffstat (limited to 'frontend/libretro.c')
-rw-r--r-- | frontend/libretro.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c index 16feeec..024ea7a 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -842,7 +842,11 @@ void retro_init(void) fclose(f); } else + { SysPrintf("no BIOS files found.\n"); + const char *str = "no BIOS found, expect bugs!"; + environ_cb(RETRO_ENVIRONMENT_SET_MESSAGE, (void*)&str); + } level = 1; environ_cb(RETRO_ENVIRONMENT_SET_PERFORMANCE_LEVEL, &level); |