11-24-2012, 08:53 AM
(This post was last modified: 11-24-2012, 11:33 AM by BlackDaemon.)
sum2012,
Hmm...a few controls, which i remember are:
arrows (up, left, right, down) - DPAD
Z, X, C - (maybe, but i could be wrong :p )cross, triangle, circle
V - select
Space - start
Use pspudb and psp-compatibility to find out.
Edit:
Controls mapping inside Windows\KeyboardDevice.cpp
Hmm...a few controls, which i remember are:
arrows (up, left, right, down) - DPAD
Z, X, C - (maybe, but i could be wrong :p )cross, triangle, circle
V - select
Space - start
Use pspudb and psp-compatibility to find out.
Edit:
Controls mapping inside Windows\KeyboardDevice.cpp
Code:
static const unsigned short key_ctrl_map[] = {
VK_SPACE, CTRL_START,
'V', CTRL_SELECT,
'A', CTRL_SQUARE,
'S', CTRL_TRIANGLE,
'X', CTRL_CIRCLE,
'Z', CTRL_CROSS,
'Q', CTRL_LTRIGGER,
'W', CTRL_RTRIGGER,
VK_UP, CTRL_UP,
VK_DOWN, CTRL_DOWN,
VK_LEFT, CTRL_LEFT,
VK_RIGHT, CTRL_RIGHT,
};