mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -06:00
Add an OSD message when taking screenshots in D3D9/D3D11
Fixes issue 6486.
This commit is contained in:
@ -58,6 +58,11 @@ void AddMessage(const char* pstr, u32 ms)
|
||||
s_listMsgs.push_back(MESSAGE(pstr, Common::Timer::GetTimeMs() + ms));
|
||||
}
|
||||
|
||||
void AddMessage(const std::string& str, u32 ms)
|
||||
{
|
||||
AddMessage(str.c_str(), ms);
|
||||
}
|
||||
|
||||
void DrawMessages()
|
||||
{
|
||||
if(!SConfig::GetInstance().m_LocalCoreStartupParameter.bOnScreenDisplayMessages)
|
||||
|
Reference in New Issue
Block a user