Update SettingsActivity.h

This commit is contained in:
Katie Paxton-Fear 2026-01-13 13:47:02 +00:00
parent a634421037
commit d9543101b7

View File

@ -51,7 +51,8 @@ struct SettingInfo {
return {key, name, SettingType::VALUE, ptr, nullptr, 0, false, {}, valueRange};
}
static SettingInfo String(const char* key, const char* name, char* ptr, size_t maxLen, bool hideFromDeviceUI = false) {
static SettingInfo String(const char* key, const char* name, char* ptr, size_t maxLen,
bool hideFromDeviceUI = false) {
return {key, name, SettingType::STRING, nullptr, ptr, maxLen, hideFromDeviceUI, {}, {}};
}
};