camera: use cdevice SDL_Event union member

This commit is contained in:
Anonymous Maarten
2024-08-15 12:40:02 +02:00
committed by Ryan C. Gordon
parent f95027e3d7
commit 612b41c451

View File

@@ -1538,7 +1538,7 @@ void SDL_UpdateCamera(void)
SDL_Event event;
SDL_zero(event);
event.type = i->type;
event.adevice.which = (Uint32) i->devid;
event.cdevice.which = (Uint32) i->devid;
SDL_PushEvent(&event);
}
SDL_free(i);