From 0749d3079ca9ba5fc304873f43cd230f0e7ee6e2 Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Sun, 28 Apr 2019 12:39:57 +1200 Subject: [PATCH] show power level in the smartaudio cms menu (#8064) show power level in the smartaudio cms menu --- src/main/cms/cms_menu_vtx_smartaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cms/cms_menu_vtx_smartaudio.c b/src/main/cms/cms_menu_vtx_smartaudio.c index 126f5841b2..b6e4d28a9a 100644 --- a/src/main/cms/cms_menu_vtx_smartaudio.c +++ b/src/main/cms/cms_menu_vtx_smartaudio.c @@ -179,7 +179,7 @@ if (saDevice.version == 2) { saCmsStatusString[13] = 0; } else { int index = (saDevice.version == 2) ? saDevice.power : saDacToPowerIndex(saDevice.power); - tfp_sprintf(&saCmsStatusString[10], "%3d", vtxCommonLookupPowerName(vtxCommonDevice(), index + 1)); + tfp_sprintf(&saCmsStatusString[10], "%s", vtxCommonLookupPowerName(vtxCommonDevice(), index + 1)); } }