From 0f3ff4e34bd2e54f5f28ab6a03e0781bd28cc54b Mon Sep 17 00:00:00 2001 From: "SND\\weimingzhi_cp" Date: Mon, 26 Oct 2009 10:56:27 +0000 Subject: git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@33050 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- plugins/dfinput/cfg.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins') diff --git a/plugins/dfinput/cfg.c b/plugins/dfinput/cfg.c index 8a012342..00ace414 100644 --- a/plugins/dfinput/cfg.c +++ b/plugins/dfinput/cfg.c @@ -218,14 +218,14 @@ void LoadConfig() { g.cfg.PadDef[current].KeyDef[DKEY_SQUARE].Key = a; g.cfg.PadDef[current].KeyDef[DKEY_SQUARE].JoyEvType = b; g.cfg.PadDef[current].KeyDef[DKEY_SQUARE].J.d = c; - } else if (strncmp(buf, "LeftAnalogX=", 11) == 0) { - g.cfg.PadDef[current].AnalogDef[ANALOG_LEFT][ANALOG_X] = atoi(&buf[11]); - } else if (strncmp(buf, "LeftAnalogY=", 11) == 0) { - g.cfg.PadDef[current].AnalogDef[ANALOG_LEFT][ANALOG_Y] = atoi(&buf[11]); - } else if (strncmp(buf, "RightAnalogX=", 12) == 0) { - g.cfg.PadDef[current].AnalogDef[ANALOG_RIGHT][ANALOG_X] = atoi(&buf[12]); - } else if (strncmp(buf, "RightAnalogY=", 12) == 0) { - g.cfg.PadDef[current].AnalogDef[ANALOG_RIGHT][ANALOG_Y] = atoi(&buf[12]); + } else if (strncmp(buf, "LeftAnalogX=", 12) == 0) { + g.cfg.PadDef[current].AnalogDef[ANALOG_LEFT][ANALOG_X] = atoi(&buf[12]); + } else if (strncmp(buf, "LeftAnalogY=", 12) == 0) { + g.cfg.PadDef[current].AnalogDef[ANALOG_LEFT][ANALOG_Y] = atoi(&buf[12]); + } else if (strncmp(buf, "RightAnalogX=", 13) == 0) { + g.cfg.PadDef[current].AnalogDef[ANALOG_RIGHT][ANALOG_X] = atoi(&buf[13]); + } else if (strncmp(buf, "RightAnalogY=", 13) == 0) { + g.cfg.PadDef[current].AnalogDef[ANALOG_RIGHT][ANALOG_Y] = atoi(&buf[13]); } } -- cgit v1.2.3