EmuNewz Network

Full Version: control key of ppsspp of win verion
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What is control key of ppsspp of windows verion ?
One more question
2547.01 - Naruto Shippuden - Kizuna Drive (ULUS10571)
How to find 2547.01 and ULUS10571 in ppsspp ?
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. Wink

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,
};
Thanks BlackDaemon