diff options
Diffstat (limited to 'gui/Config.c')
| -rwxr-xr-x | gui/Config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/Config.c b/gui/Config.c index 5f9a0c99..8d6253c2 100755 --- a/gui/Config.c +++ b/gui/Config.c @@ -130,7 +130,7 @@ int LoadConfig(PcsxConfig *Conf) { Config.SioIrq = GetValueb(data, "SioIrq"); Config.Mdec = GetValueb(data, "Mdec"); Config.PsxAuto = GetValueb(data, "PsxAuto"); - Config.Cdda = GetValueb(data, "Cdda"); + Config.Cdda = GetValuel(data, "Cdda"); Config.SlowBoot= GetValueb(data, "SlowBoot"); Config.Debug = GetValueb(data, "Dbg"); Config.PsxOut = (Config.PsxOut || GetValueb(data, "PsxOut")); @@ -179,7 +179,7 @@ void SaveConfig() { SetValueb("SioIrq", Config.SioIrq); SetValueb("Mdec", Config.Mdec); SetValueb("PsxAuto", Config.PsxAuto); - SetValueb("Cdda", Config.Cdda); + SetValuel("Cdda", Config.Cdda); SetValueb("SlowBoot",Config.SlowBoot); SetValueb("Dbg", Config.Debug); SetValueb("PsxOut", Config.PsxOut); |
