mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-01-17 14:47:19 +01:00
Check the return value of SDL_EVDEV_Init()
This commit is contained in:
parent
38854e0333
commit
c16dd74f3b
@ -183,7 +183,9 @@ RPI_VideoInit(_THIS)
|
|||||||
SDL_AddVideoDisplay(&display);
|
SDL_AddVideoDisplay(&display);
|
||||||
|
|
||||||
#ifdef SDL_INPUT_LINUXEV
|
#ifdef SDL_INPUT_LINUXEV
|
||||||
SDL_EVDEV_Init();
|
if (SDL_EVDEV_Init() < 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
RPI_InitMouse(_this);
|
RPI_InitMouse(_this);
|
||||||
|
Loading…
Reference in New Issue
Block a user