Fixes a missed float to double change in the HAL. (#176)

This commit is contained in:
Thad House
2016-07-13 19:25:57 -07:00
committed by Peter Johnson
parent 6251697f60
commit 5305087162
2 changed files with 2 additions and 2 deletions

View File

@@ -149,7 +149,7 @@ int32_t HAL_SetJoystickOutputs(int32_t joystickNum, int64_t outputs,
leftRumble, rightRumble);
}
float HAL_GetMatchTime(int32_t* status) {
double HAL_GetMatchTime(int32_t* status) {
float matchTime;
*status = FRC_NetworkCommunication_getMatchTime(&matchTime);
return matchTime;