EmuNewz Network
control key of ppsspp of win verion - Printable Version

+- EmuNewz Network (https://www.emunewz.net/forum)
+-- Forum: PSP Emulation (https://www.emunewz.net/forum/forumdisplay.php?fid=191)
+--- Forum: PPSSPP UnOfficial Forum (https://www.emunewz.net/forum/forumdisplay.php?fid=173)
+---- Forum: Commercial Game Discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=177)
+----- Forum: PPSSPP - General Discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=179)
+----- Thread: control key of ppsspp of win verion (/showthread.php?tid=100158)



control key of ppsspp of win verion - sum2012 - 11-23-2012

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 ?



RE: control key of ppsspp of win verion - BlackDaemon - 11-24-2012

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



RE: control key of ppsspp of win verion - sum2012 - 11-24-2012

Thanks BlackDaemon