mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-21 23:35:34 +03:00
Merge pull request #2274 from mikeller/fix_map_diff_default_bug
Fixed bug causing 'map' to be shown in 'diff' even if it was default.
This commit is contained in:
commit
ed48051f5b
1 changed files with 1 additions and 1 deletions
|
@ -2703,7 +2703,7 @@ static void cliBeeper(char *cmdline)
|
||||||
|
|
||||||
static void printMap(uint8_t dumpMask, const rxConfig_t *rxConfig, const rxConfig_t *defaultRxConfig)
|
static void printMap(uint8_t dumpMask, const rxConfig_t *rxConfig, const rxConfig_t *defaultRxConfig)
|
||||||
{
|
{
|
||||||
bool equalsDefault = false;
|
bool equalsDefault = true;
|
||||||
char buf[16];
|
char buf[16];
|
||||||
char bufDefault[16];
|
char bufDefault[16];
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue