Detailed (timestamp) naming by default

This commit is contained in:
Willy-JL
2023-09-02 17:17:05 +02:00
parent 111a9da5ef
commit 756215457e
3 changed files with 7 additions and 7 deletions

View File

@@ -45,7 +45,7 @@ const char* const name_generator_right[] = {
};
void name_generator_make_auto(char* name, size_t max_name_size, const char* prefix) {
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagDetailedFilename)) {
if(!furi_hal_rtc_is_flag_set(FuriHalRtcFlagSimpleFilename)) {
name_generator_make_detailed(name, max_name_size, prefix);
} else {
name_generator_make_random(name, max_name_size);