summaryrefslogtreecommitdiff
path: root/gui/Config.c
diff options
context:
space:
mode:
authorSND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-11-28 11:34:19 +0000
committerSND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-11-28 11:34:19 +0000
commitbfc8e12c52df1f7cbe8fafaf7804b56db3103f8f (patch)
tree863705c68b3e5432f41ebe866565ca0431799b5b /gui/Config.c
parent5ba533776f6e8a3a0e56b104fc95e2c85ba09b3d (diff)
downloadpcsxr-bfc8e12c52df1f7cbe8fafaf7804b56db3103f8f.tar.gz
Added option to not have memory card plugged. Chronicles of the Sword password screen can now be accessed.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88004 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'gui/Config.c')
-rwxr-xr-xgui/Config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/Config.c b/gui/Config.c
index bce65ac3..1f370a82 100755
--- a/gui/Config.c
+++ b/gui/Config.c
@@ -137,6 +137,7 @@ int LoadConfig(PcsxConfig *Conf) {
Config.SpuIrq = GetValueb(data, "SpuIrq");
Config.RCntFix = GetValueb(data, "RCntFix");
Config.VSyncWA = GetValueb(data, "VSyncWA");
+ Config.NoMemcard = GetValueb(data, "NoMemcard");
Config.Widescreen = GetValueb(data, "Widescreen");
Config.Cpu = GetValuel(data, "Cpu");
@@ -183,6 +184,7 @@ void SaveConfig() {
SetValueb("SpuIrq", Config.SpuIrq);
SetValueb("RCntFix", Config.RCntFix);
SetValueb("VSyncWA", Config.VSyncWA);
+ SetValueb("NoMemcard", Config.NoMemcard);
SetValueb("Widescreen", Config.Widescreen);
SetValuel("Cpu", Config.Cpu);