call InputHandler::Update
This commit is contained in:
@@ -103,6 +103,8 @@ void InputHandler_Linux_Joystick::Update(float fDeltaTime)
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
InputHandler::Update( fDeltaTime );
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputHandler_Linux_Joystick::GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut)
|
void InputHandler_Linux_Joystick::GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut)
|
||||||
|
|||||||
@@ -186,6 +186,8 @@ void InputHandler_Linux_tty::Update(float fDeltaTime)
|
|||||||
INPUTFILTER->ButtonPressed(DeviceInput(DEVICE_KEYBOARD, butno), pressed);
|
INPUTFILTER->ButtonPressed(DeviceInput(DEVICE_KEYBOARD, butno), pressed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
InputHandler::Update( fDeltaTime );
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputHandler_Linux_tty::GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut)
|
void InputHandler_Linux_tty::GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut)
|
||||||
|
|||||||
@@ -130,6 +130,8 @@ void InputHandler_SDL::Update(float fDeltaTime)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
InputHandler::Update( fDeltaTime );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -42,8 +42,10 @@ void InputHandler_Win32_Pump::Update(float fDeltaTime)
|
|||||||
InputDevice id = InputDevice(DEVICE_PUMP1 + i);
|
InputDevice id = InputDevice(DEVICE_PUMP1 + i);
|
||||||
|
|
||||||
for (int butno = 0 ; butno < NUM_PUMP_PAD_BUTTONS ; butno++)
|
for (int butno = 0 ; butno < NUM_PUMP_PAD_BUTTONS ; butno++)
|
||||||
INPUTFILTER->ButtonPressed(DeviceInput(id, butno), !(ret & bits[butno]));
|
ButtonPressed(DeviceInput(id, butno), !(ret & bits[butno]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
InputHandler::Update( fDeltaTime );
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputHandler_Win32_Pump::GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut)
|
void InputHandler_Win32_Pump::GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut)
|
||||||
|
|||||||
Reference in New Issue
Block a user