mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-11 17:05:41 +00:00
Check the return value of SDL_EVDEV_Init()
This commit is contained in:
parent
38854e0333
commit
c16dd74f3b
1 changed files with 3 additions and 1 deletions
|
|
@ -183,7 +183,9 @@ RPI_VideoInit(_THIS)
|
|||
SDL_AddVideoDisplay(&display);
|
||||
|
||||
#ifdef SDL_INPUT_LINUXEV
|
||||
SDL_EVDEV_Init();
|
||||
if (SDL_EVDEV_Init() < 0) {
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
RPI_InitMouse(_this);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue