Merge pull request #71 from retro-wertz/add_osd_to_fds

add osd to fds disk status
This commit is contained in:
meepingsnesroms
2017-02-21 12:21:08 -08:00
committed by GitHub

View File

@@ -89,6 +89,13 @@ void FCEU_DispMessage(char *format, ...)
va_end(ap);
howlong = 180;
#ifdef __LIBRETRO__
struct retro_message msg;
msg.msg = errmsg;
msg.frames = howlong;
environ_cb(RETRO_ENVIRONMENT_SET_MESSAGE, &msg);
#endif
}
void FCEU_ResetMessages(void)