Renamed to is_always_powered for convention

This commit is contained in:
Ben Meadors
2021-11-06 12:11:22 -05:00
parent d6c7ea921a
commit 2d939d26ee
2 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@
static bool isPowered()
{
// Completely circumvents the battery / power sensing logic and assumes constant power source
if (radioConfig.preferences.always_powered) {
if (radioConfig.preferences.is_always_powered) {
return true;
}