From 01fed5980244e47fd19c1d2580d307e214f3618e Mon Sep 17 00:00:00 2001 From: Jack253-png Date: Sun, 1 Jun 2025 18:35:06 +0800 Subject: [PATCH] Harmony port: fix --- src/video/ohos/SDL_ohostouch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video/ohos/SDL_ohostouch.h b/src/video/ohos/SDL_ohostouch.h index 36deb44109..de33e45316 100644 --- a/src/video/ohos/SDL_ohostouch.h +++ b/src/video/ohos/SDL_ohostouch.h @@ -2,14 +2,14 @@ #define SDL_OHOSTOUCH_H typedef struct SDL_OHOSTouchEvent { - int64_t deviceId; - int32_t fingerId; + long long deviceId; + int fingerId; int type; float x; float y; float p; float area; - int64_t timestamp; + long long timestamp; } SDL_OHOSTouchEvent; void OHOS_OnTouch(SDL_OHOSTouchEvent event);