1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 16:25:16 +03:00

Cosmetics

This commit is contained in:
Bertrand Songis 2019-05-15 09:31:26 +02:00
parent 2a94add499
commit 5ba6aae83a
2 changed files with 4 additions and 4 deletions

View file

@ -149,11 +149,11 @@ const char * loadModel(const char * filename, bool alarms)
return error;
}
const char * loadRadioSettingsSettings()
const char * loadRadioSettings()
{
const char * error = loadFile(RADIO_SETTINGS_PATH, (uint8_t *)&g_eeGeneral, sizeof(g_eeGeneral));
if (error) {
TRACE("loadRadioSettingsSettings error=%s", error);
TRACE("loadRadioSettings error=%s", error);
}
return error;
@ -189,7 +189,7 @@ void storageReadAll()
{
TRACE("storageReadAll");
if (loadRadioSettingsSettings() != nullptr) {
if (loadRadioSettings() != nullptr) {
storageEraseAll(true);
}