partially revived platform support for PSP (unfinished) #2

scaling, release generation, fixes
still not planning to make this officially supported.
This commit is contained in:
kub 2021-01-13 22:26:41 +01:00
parent cdc6aac4c0
commit 6c5784f07f
13 changed files with 129 additions and 93 deletions

View file

@ -208,6 +208,10 @@ void in_psp_init(const struct in_default_bind *defbinds)
in_psp_keys[lg2(PSP_CTRL_CIRCLE)] = "Circle";
in_psp_keys[lg2(PSP_CTRL_CROSS)] = "Cross";
in_psp_keys[lg2(PSP_CTRL_SQUARE)] = "Square";
in_psp_keys[lg2(PSP_NUB_UP)] = "Analog up";
in_psp_keys[lg2(PSP_NUB_LEFT)] = "Analog left";
in_psp_keys[lg2(PSP_NUB_DOWN)] = "Analog down";
in_psp_keys[lg2(PSP_NUB_RIGHT)] = "Analog right";
in_register_driver(&in_psp_drv, defbinds, NULL);
}