fix vita build failure after commit 2c518747b

This commit is contained in:
Ozkan Sezer 2022-09-27 20:21:24 +03:00
parent 36e7670143
commit 77c7836c26
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ SDL_VITA_SensorUpdate(SDL_Sensor *sensor)
if (sensor->hwdata->timestamp_us) {
unsigned int delta;
if (sensor->hwdata->last_timestamp > timestamp) {
SDL_COMPILE_TIME_ASSERT(sizeof(timestamp) == sizeof(Uint32));
SDL_COMPILE_TIME_ASSERT(timestamp, sizeof(timestamp) == sizeof(Uint32));
delta = (SDL_MAX_UINT32 - sensor->hwdata->last_timestamp + timestamp + 1);
} else {
delta = (timestamp - sensor->hwdata->last_timestamp);