mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-21 15:25:36 +03:00
Merge pull request #9985 from mikeller/fix_osd_feature_disabling
Fixed disabling of OSD feature when OSD is disabled.
This commit is contained in:
commit
5d591e3162
1 changed files with 4 additions and 0 deletions
|
@ -983,6 +983,10 @@ void init(void)
|
|||
|
||||
// osdInit will register with CMS by itself.
|
||||
osdInit(osdDisplayPort, osdDisplayPortDevice);
|
||||
|
||||
if (osdDisplayPortDevice == OSD_DISPLAYPORT_DEVICE_NONE) {
|
||||
featureDisableImmediate(FEATURE_OSD);
|
||||
}
|
||||
}
|
||||
#endif // USE_OSD
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue