Skip to content

Commit

Permalink
Fix/SayIntentions: Remove spaces from id to fix key lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
TwinFan committed Nov 15, 2024
1 parent d17fb89 commit b124bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/LTFlightData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ std::string LTFlightData::FDKeyTy::SetKey (FDKeyType _eType, unsigned long _num)
snprintf(buf, sizeof(buf), "%08lX", _num);
break;
case KEY_SAYINTENTIONS:
snprintf(buf, sizeof(buf), "%8lu", _num);
snprintf(buf, sizeof(buf), "%lu", _num);
break;
case KEY_UNKNOWN:
// must not happen
Expand Down

1 comment on commit b124bbf

@TwinFan
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Relates to #274

Please sign in to comment.