summaryrefslogtreecommitdiff
path: root/gui/Config.c
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-05-20 14:20:39 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-05-20 14:20:39 +0000
commit9a63e315195a0dcd669d2df1c62142eaf740de7a (patch)
treef13c2533386ef867f79aab648f910146beb2ffd6 /gui/Config.c
parenta603b0692f07a5dc9980b9e76c7cddfe57805c12 (diff)
downloadpcsxr-9a63e315195a0dcd669d2df1c62142eaf740de7a.tar.gz
Configuration->CPU->Widescreen (16:9, GTE Hack).
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@78188 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'gui/Config.c')
-rw-r--r--gui/Config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/Config.c b/gui/Config.c
index d59c728e..220cbfad 100644
--- a/gui/Config.c
+++ b/gui/Config.c
@@ -133,6 +133,7 @@ int LoadConfig(PcsxConfig *Conf) {
Config.SpuIrq = GetValueb(data, "SpuIrq");
Config.RCntFix = GetValueb(data, "RCntFix");
Config.VSyncWA = GetValueb(data, "VSyncWA");
+ Config.Widescreen = GetValueb(data, "Widescreen");
Config.Cpu = GetValuel(data, "Cpu");
Config.PsxType = GetValuel(data, "PsxType");
@@ -174,6 +175,7 @@ void SaveConfig() {
SetValueb("SpuIrq", Config.SpuIrq);
SetValueb("RCntFix", Config.RCntFix);
SetValueb("VSyncWA", Config.VSyncWA);
+ SetValueb("Widescreen", Config.Widescreen);
SetValuel("Cpu", Config.Cpu);
SetValuel("PsxType", Config.PsxType);