mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Added option to toggle the display of On-Screen Display messages in the Interface tab.
This commit is contained in:
parent
a135512f9b
commit
d6697d50c7
6 changed files with 19 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include "Common.h"
|
||||
|
||||
#include "ConfigManager.h"
|
||||
#include "OnScreenDisplay.h"
|
||||
#include "RenderBase.h"
|
||||
#include "Timer.h"
|
||||
|
@ -47,6 +48,8 @@ void AddMessage(const char* pstr, u32 ms)
|
|||
|
||||
void DrawMessages()
|
||||
{
|
||||
if(!SConfig::GetInstance().m_LocalCoreStartupParameter.bOnScreenDisplayMessages) return;
|
||||
|
||||
if (s_listMsgs.size() > 0)
|
||||
{
|
||||
int left = 25, top = 15;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue