diff options
Diffstat (limited to 'gui/Config.c')
| -rwxr-xr-x | gui/Config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/Config.c b/gui/Config.c index 1f370a82..60c2b4cc 100755 --- a/gui/Config.c +++ b/gui/Config.c @@ -142,6 +142,7 @@ int LoadConfig(PcsxConfig *Conf) { Config.Cpu = GetValuel(data, "Cpu"); Config.PsxType = GetValuel(data, "PsxType"); + Config.RewindCount = GetValuel(data, "RewindCount"); free(data); @@ -189,6 +190,7 @@ void SaveConfig() { SetValuel("Cpu", Config.Cpu); SetValuel("PsxType", Config.PsxType); + SetValuel("RewindCount", Config.RewindCount); fclose(f); } |
