LilyPad: Version number updated in rc copy. Refresh device list bug on device insertion/removal fixed. Attempt to resolve potential XInput/DirectInput infighting by deleting DirectInput interfaces to disabled/bindingless DirectInput devices.

git-svn-id: http://pcsx2.googlecode.com/svn/branches/rc_0.9.6@565 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
mattmenke 2009-02-21 19:41:30 +00:00
parent de68593f4c
commit 9152925524
1 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ void AddForce(ButtonSum *sum, u8 cmd, int delta = 255) {
if (cmd<0x14) {
sum->buttons[cmd-0x10] += delta;
}
// D-pad. Command numbering is based on ordering of digital values.
// D-pad. Command numbering is based on ordering of digital values.
else if (cmd < 0x18) {
if (cmd == 0x14) {
sum->sticks[0].vert -= delta;
@ -487,7 +487,7 @@ u32 CALLBACK PS2EgetLibType(void) {
return PS2E_LT_PAD;
}
#define VERSION ((0<<8) | 9 | (9<<24))
#define VERSION ((0<<8) | 9 | (10<<24))
u32 CALLBACK PS2EgetLibVersion2(u32 type) {
ps2e = 1;