mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-11-23 10:09:48 +00:00
Removed redundant condition in src/events/SDL_pen.c
This commit is contained in:
parent
191f3ecbbc
commit
0e909d2785
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user