1
0
mirror of https://github.com/XProger/OpenLara.git synced 2025-08-15 09:34:18 +02:00

#14 Linux minor fix

This commit is contained in:
XProger
2018-03-06 04:09:49 +03:00
parent 6fb0e2781e
commit 21868170a5

View File

@@ -317,7 +317,7 @@ void joyRumble(JoyDevice &joy) {
if (joy.oL == 0.0f && joy.vL == 0.0f && joy.oR == 0.0f && joy.vR == 0.0f) if (joy.oL == 0.0f && joy.vL == 0.0f && joy.oR == 0.0f && joy.vR == 0.0f)
return; return;
if (osGetTime() < joy.time) if (osGetTime() <= joy.time)
return; return;
input_event event; input_event event;