psp: Hook up event subsystem init/quit.

Fixes #8554.

(cherry picked from commit 0e9d050296ba754d23e82752eb1bd61221768586)
main
Ryan C. Gordon 2023-11-22 17:59:36 -05:00
parent e9659f5738
commit 6cde96f9a0
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
2 changed files with 8 additions and 1 deletions

View File

@ -23,5 +23,7 @@
extern void PSP_InitOSKeymap(SDL_VideoDevice *_this);
extern void PSP_PumpEvents(SDL_VideoDevice *_this);
extern int PSP_EventInit(SDL_VideoDevice *_this);
extern void PSP_EventQuit(SDL_VideoDevice *_this);
/* end of SDL_pspevents_c.h ... */

View File

@ -131,6 +131,10 @@ int PSP_VideoInit(SDL_VideoDevice *_this)
{
SDL_DisplayMode mode;
if (PSP_EventInit(_this) == -1) {
return -1; /* error string would already be set */
}
SDL_zero(mode);
mode.w = 480;
mode.h = 272;
@ -145,8 +149,9 @@ int PSP_VideoInit(SDL_VideoDevice *_this)
return 0;
}
void PSP_VideoQuit(SDL_VideoDevice *_this)
void PSP_VideoQuit(_THIS)
{
PSP_EventQuit(_this);
}
int PSP_GetDisplayModes(SDL_VideoDevice *_this, SDL_VideoDisplay *display)