mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-06-24 05:31:13 +00:00
Fix integer truncation warning on MSVC
This commit is contained in:
+3
-3
@@ -287,7 +287,7 @@ static void inputSendThreadProc(void* context) {
|
|||||||
|
|
||||||
// Delay for batching if required
|
// Delay for batching if required
|
||||||
if (now < lastControllerPacketTime + CONTROLLER_BATCHING_INTERVAL_MS) {
|
if (now < lastControllerPacketTime + CONTROLLER_BATCHING_INTERVAL_MS) {
|
||||||
PltSleepMs(lastControllerPacketTime + CONTROLLER_BATCHING_INTERVAL_MS - now);
|
PltSleepMs((int)(lastControllerPacketTime + CONTROLLER_BATCHING_INTERVAL_MS - now));
|
||||||
now = PltGetMillis();
|
now = PltGetMillis();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -346,7 +346,7 @@ static void inputSendThreadProc(void* context) {
|
|||||||
|
|
||||||
// Delay for batching if required
|
// Delay for batching if required
|
||||||
if (now < lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS) {
|
if (now < lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS) {
|
||||||
PltSleepMs(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now);
|
PltSleepMs((int)(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now));
|
||||||
now = PltGetMillis();
|
now = PltGetMillis();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -400,7 +400,7 @@ static void inputSendThreadProc(void* context) {
|
|||||||
|
|
||||||
// Delay for batching if required
|
// Delay for batching if required
|
||||||
if (now < lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS) {
|
if (now < lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS) {
|
||||||
PltSleepMs(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now);
|
PltSleepMs((int)(lastMousePacketTime + MOUSE_BATCHING_INTERVAL_MS - now));
|
||||||
now = PltGetMillis();
|
now = PltGetMillis();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user