diff options
| author | SND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-02-04 10:15:07 +0000 |
|---|---|---|
| committer | SND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-02-04 10:15:07 +0000 |
| commit | 10b7afe174672aded1c96f200722050df5638523 (patch) | |
| tree | 5d11f078f85b819a425b83ed37a87ea3a33b865f /gui/Config.c | |
| parent | b7cde3470383649d6fc07f06f9d1a345052ac21e (diff) | |
| download | pcsxr-10b7afe174672aded1c96f200722050df5638523.tar.gz | |
Rewind: states are now made after n vblanks and platform independ way. Also GTK GUI to configure values. By default this feature is disabled (0 vblanks and 0 states)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88837 e17a0e51-4ae3-4d35-97c3-1a29b211df97
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 f6300db9..5f9a0c99 100755 --- a/gui/Config.c +++ b/gui/Config.c @@ -143,6 +143,7 @@ int LoadConfig(PcsxConfig *Conf) { Config.Cpu = GetValuel(data, "Cpu"); Config.PsxType = GetValuel(data, "PsxType"); Config.RewindCount = GetValuel(data, "RewindCount"); + Config.RewindInterval = GetValuel(data, "RewindInterval"); free(data); @@ -191,6 +192,7 @@ void SaveConfig() { SetValuel("Cpu", Config.Cpu); SetValuel("PsxType", Config.PsxType); SetValuel("RewindCount", Config.RewindCount); + SetValuel("RewindInterval", Config.RewindInterval); fclose(f); } |
