From 3f0d520a49219c4d8c457e60ded077767dc7f0fd Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Mon, 26 Nov 2018 19:55:01 +0300 Subject: [PATCH] SDL_touch.h (SDL_TouchDeviceType): remove comma at end of enumerator list. --- include/SDL_touch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_touch.h b/include/SDL_touch.h index 926a9e189c511..398a77942f771 100644 --- a/include/SDL_touch.h +++ b/include/SDL_touch.h @@ -46,7 +46,7 @@ typedef enum SDL_TOUCH_DEVICE_INVALID = -1, SDL_TOUCH_DEVICE_DIRECT, /* touch screen with window-relative coordinates */ SDL_TOUCH_DEVICE_INDIRECT_ABSOLUTE, /* trackpad with absolute device coordinates */ - SDL_TOUCH_DEVICE_INDIRECT_RELATIVE, /* trackpad with screen cursor-relative coordinates */ + SDL_TOUCH_DEVICE_INDIRECT_RELATIVE /* trackpad with screen cursor-relative coordinates */ } SDL_TouchDeviceType; typedef struct SDL_Finger