I've just been getting into using SDL on the PSP. It works very well, all besides the Home key. I can't get any button press on the Home key to register.
...
SDL_Joystick *joy=0;
if(SDL_NumJoysticks()>0)
joy=SDL_JoystickOpen(0);
...
if (SDL_JoystickGetButton(joy, 2) ) { sceKernelExitGame(); }
if (SDL_JoystickGetButton(joy, 12) ) { sceKernelExitGame(); }
If I press the Cross button, the game will exit, but if I press the home button, nothing happens. I don't need this for my game or anything, but I was wondering if anybody else had ran into this problem?