mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-25 10:48:40 +00:00
Add an on screen lag counter.
This commit is contained in:
parent
35e5a1e592
commit
a5d210129d
9 changed files with 43 additions and 7 deletions
|
@ -132,6 +132,7 @@ void SConfig::SaveSettings()
|
|||
// General
|
||||
ini.Set("General", "LastFilename", m_LastFilename);
|
||||
ini.Set("General", "PauseMovie", m_pauseMovie);
|
||||
ini.Set("General", "ShowLag", m_showLag);
|
||||
|
||||
// ISO folders
|
||||
// clear removed folders
|
||||
|
@ -262,6 +263,7 @@ void SConfig::LoadSettings()
|
|||
{
|
||||
ini.Get("General", "LastFilename", &m_LastFilename);
|
||||
ini.Get("General", "PauseMovie", &m_pauseMovie, false);
|
||||
ini.Get("General", "ShowLag", &m_showLag, false);
|
||||
|
||||
m_ISOFolder.clear();
|
||||
int numGCMPaths;
|
||||
|
|
|
@ -76,6 +76,7 @@ struct SConfig : NonCopyable
|
|||
bool m_ListTaiwan;
|
||||
bool m_ListUnknown;
|
||||
bool m_pauseMovie;
|
||||
bool m_showLag;
|
||||
|
||||
SysConf* m_SYSCONF;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue