Fix integer truncation warning on MSVC

This commit is contained in:
Cameron Gutman 2023-02-15 01:33:32 -06:00
parent 54d46ca80f
commit c88b1bcf8e

View File

@ -287,7 +287,7 @@ static void inputSendThreadProc(void* context) {
// Delay for batching if required
if (now < lastControllerPacketTime + CONTROLLER_BATCHING_INTERVAL_MS) {
PltSleepMs(lastControllerPacketTime + CONTROLLER_BATCHING_INTERVAL_MS - now);
PltSleepMs((int)(lastControllerPacketTime + CONTROLLER_BATCHING_INTERVAL_MS - now));
now = PltGetMillis();
}
@ -346,7 +346,7 @@ static void inputSendThreadProc(void* context) {
// Delay for batching if required
if (now < lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS) {
PltSleepMs(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now);
PltSleepMs((int)(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now));
now = PltGetMillis();
}
@ -400,7 +400,7 @@ static void inputSendThreadProc(void* context) {
// Delay for batching if required
if (now < lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS) {
PltSleepMs(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now);
PltSleepMs((int)(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now));
now = PltGetMillis();
}