Harmony port: fix

This commit is contained in:
Jack253-png 2025-06-01 18:35:06 +08:00
parent 167fe8bdb0
commit 01fed59802
No known key found for this signature in database
GPG Key ID: 51EA61206B02D886
1 changed files with 3 additions and 3 deletions

View File

@ -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);