summaryrefslogtreecommitdiff
path: root/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2008-09-24 00:27:50 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2008-09-24 00:27:50 +0000
commit6312ccbc307b9058ee171de375a189a9de264dbb (patch)
treead4cb2731a3a3a7c1cbaf436eff5ac7e3753a846 /Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp
parent180070d1af3541e7207b90680bb4130d4d609f9d (diff)
completed the iso directory path chooser. changed a ini variable name so it is more to sonic's liking, and corrected an #ifndef
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@654 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp')
-rw-r--r--Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp b/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp
index 59a01e77cd..12520ad9c1 100644
--- a/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp
+++ b/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp
@@ -675,7 +675,7 @@ void LoadConfig()
//keyboard settings
file.Get(SectionName, "Type", &pad[i].type);
file.Get(SectionName, "Attached", &pad[i].attached, false);
- file.Get(SectionName, "Disable when window looses focus", &pad[i].disable, false);
+ file.Get(SectionName, "DisableOnBackground", &pad[i].disable, false);
for (int x = 0; x < NUMCONTROLS; x++)
{
@@ -687,7 +687,7 @@ void LoadConfig()
//xpad settings
file.Get(SectionName, "Type", &pad[i].type);
file.Get(SectionName, "Attached", &pad[i].attached, false);
- file.Get(SectionName, "Disable when window looses focus", &pad[i].disable, false);
+ file.Get(SectionName, "DisableOnBackground", &pad[i].disable, false);
file.Get(SectionName, "Rumble", &pad[i].rumble, true);
file.Get(SectionName, "XPad#", &pad[i].XPad);
}
@@ -710,7 +710,7 @@ void SaveConfig()
//keyboard settings
file.Set(SectionName, "Type", pad[i].type);
file.Set(SectionName, "Attached", pad[i].attached);
- file.Set(SectionName, "Disable when window looses focus", pad[i].disable);
+ file.Set(SectionName, "DisableOnBackground", pad[i].disable);
for (int x = 0; x < NUMCONTROLS; x++)
{
@@ -722,7 +722,7 @@ void SaveConfig()
//xpad settings
file.Set(SectionName, "Type", pad[i].type);
file.Set(SectionName, "Attached", pad[i].attached);
- file.Set(SectionName, "Disable when window looses focus", pad[i].disable);
+ file.Set(SectionName, "DisableOnBackground", pad[i].disable);
file.Set(SectionName, "Rumble", pad[i].rumble);
file.Set(SectionName, "XPad#", pad[i].XPad);
}