Allow update rates of less than 1hz
This commit is contained in:
parent
ee60de6bf4
commit
6b14d44003
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ namespace Ryujinx
|
|||
Enabled = Convert.ToBoolean(parser.Value("Profiling_Enabled")),
|
||||
FileDumpEnabled = profilePath != "",
|
||||
DumpLocation = profilePath,
|
||||
UpdateRate = 1.0f / Convert.ToInt32(parser.Value("Profiling_Update_Rate")),
|
||||
UpdateRate = 1.0f / Convert.ToSingle(parser.Value("Profiling_Update_Rate")),
|
||||
});
|
||||
|
||||
SystemLanguage SetLanguage = Enum.Parse<SystemLanguage>(parser.Value("System_Language"));
|
||||
|
|
Loading…
Add table
Reference in a new issue