Removed redundant condition in src/events/SDL_pen.c

This commit is contained in:
Petar Popovic 2024-10-03 21:15:04 +02:00 committed by Sam Lantinga
parent 191f3ecbbc
commit 0e909d2785

View File

@ -349,7 +349,7 @@ void SDL_SendPenTouch(Uint64 timestamp, SDL_PenID instance_id, const SDL_Window
if (send_event) {
const SDL_EventType evtype = down ? SDL_EVENT_PEN_DOWN : SDL_EVENT_PEN_UP;
if (send_event && SDL_EventEnabled(evtype)) {
if (SDL_EventEnabled(evtype)) {
SDL_Event event;
SDL_zero(event);
event.ptouch.type = evtype;