mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-09-09 22:32:57 +02:00
Removed the keyboard disabled option, as using two different pad plugins is really just a bad idea. Also finally got sick of people saying "I have keyboard disabled, and the keys don't work! I urgently need help!" Also will no longer let you enter config mode (And thus crash the program) when emulator is running. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1889 96395faa-99c1-11dd-bbfe-3dabce05a288
28 lines
651 B
C++
28 lines
651 B
C++
#include "Global.h"
|
|
#include "DeviceEnumerator.h"
|
|
#include "WindowsMessaging.h"
|
|
#include "DirectInput.h"
|
|
#include "KeyboardHook.h"
|
|
#include "RawInput.h"
|
|
#include "XInput.h"
|
|
#include "HidDevice.h"
|
|
#include "DualShock3.h"
|
|
|
|
void EnumDevices(int hideDXXinput) {
|
|
// Needed for enumeration of some device types.
|
|
dm->ReleaseInput();
|
|
InputDeviceManager *oldDm = dm;
|
|
dm = new InputDeviceManager();
|
|
|
|
EnumHookDevices();
|
|
EnumWindowsMessagingDevices();
|
|
EnumRawInputDevices();
|
|
EnumDualShock3s();
|
|
EnumXInputDevices();
|
|
EnumDirectInputDevices(hideDXXinput);
|
|
|
|
dm->CopyBindings(oldDm->numDevices, oldDm->devices);
|
|
|
|
delete oldDm;
|
|
}
|