src/Aircraft/flightrecorder.hxx: use unsigned to fix gcc warning elsewhere.
This commit is contained in:
parent
6007327da9
commit
be3329e4b4
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ private:
|
||||||
FlightRecorder::TSignalList m_CaptureInt8;
|
FlightRecorder::TSignalList m_CaptureInt8;
|
||||||
FlightRecorder::TSignalList m_CaptureBool;
|
FlightRecorder::TSignalList m_CaptureBool;
|
||||||
|
|
||||||
int m_TotalRecordSize;
|
unsigned m_TotalRecordSize;
|
||||||
std::string m_ConfigName;
|
std::string m_ConfigName;
|
||||||
bool m_usingDefaultConfig;
|
bool m_usingDefaultConfig;
|
||||||
FGMultiplayMgr* m_MultiplayMgr;
|
FGMultiplayMgr* m_MultiplayMgr;
|
||||||
|
|
Loading…
Reference in a new issue