Skip to content

Commit f28e74b

Browse files
author
Patrick Bechon
committed
Fix a typo in flightStatusMessage.isInFlight()
1 parent cce075b commit f28e74b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/PayloadStructs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ struct flightStatusMessage
6565
byte commNetSignalStrenghPercentage; /**< Current vessel commNet signal strengh (in percentage). 0 when CommNet is not used */
6666
byte currentStage; /**< Current stage of the vessel (also the total number of stage remaining). Decreased by one at each staging. Caped at 255 by Simpit.*/
6767

68-
inline bool isInFligth(){ return this->flightStatusFlags & FLIGHT_IN_FLIGHT; }
68+
inline bool isInFlight(){ return this->flightStatusFlags & FLIGHT_IN_FLIGHT; }
6969
inline bool isInEVA(){ return this->flightStatusFlags & FLIGHT_IS_EVA; }
7070
inline bool isRecoverable(){ return this->flightStatusFlags & FLIGHT_IS_RECOVERABLE; }
7171
inline bool isInAtmoTW(){ return this->flightStatusFlags & FLIGHT_IS_ATMO_TW; }

0 commit comments

Comments
 (0)