changed padsimple to default to using xpad and keyboard.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1027 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2008-10-31 17:02:51 +00:00
parent b7ec3a6691
commit c3dc7ec481
4 changed files with 108 additions and 160 deletions

View File

@ -74,11 +74,11 @@ static const char* controlNames[] =
};
struct SPads {
bool keyboard; // Is it a keyboard?
bool attached; // Pad is "attached" to the gamecube/wii
bool disable; // Disabled when dolphin isn't in focus
bool rumble; // Rumble for xpad
int xpadplayer; // Player# of the xpad
bool bEnableXPad; // Use an XPad in addition to the keyboard?
bool bAttached; // Pad is "attached" to the gamecube/wii
bool bDisable; // Disabled when dolphin isn't in focus
bool bRumble; // Rumble for xpad
int XPadPlayer; // Player# of the xpad
unsigned int keyForControl[NUMCONTROLS];// Keyboard mapping
};