libretro: Reduce OSD message durations

This commit is contained in:
Connor McLaughlin 2020-07-04 21:17:29 +10:00
parent 8408d3b6bf
commit e15fafe428

View file

@ -77,13 +77,13 @@ void LibretroHostInterface::Shutdown()
void LibretroHostInterface::ReportError(const char* message) void LibretroHostInterface::ReportError(const char* message)
{ {
AddFormattedOSDMessage(60.0f, "ERROR: %s", message); AddFormattedOSDMessage(10.0f, "ERROR: %s", message);
Log_ErrorPrint(message); Log_ErrorPrint(message);
} }
void LibretroHostInterface::ReportMessage(const char* message) void LibretroHostInterface::ReportMessage(const char* message)
{ {
AddOSDMessage(message, 10.0f); AddOSDMessage(message, 5.0f);
Log_InfoPrint(message); Log_InfoPrint(message);
} }