mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
Merge branch 'dev' of https://github.com/flipperdevices/flipperzero-firmware into mntm-dev
This commit is contained in:
@@ -82,8 +82,8 @@ void name_generator_make_random_prefixed(
|
||||
size_t max_name_size,
|
||||
const char* prefix,
|
||||
bool prefix_after) {
|
||||
furi_assert(name);
|
||||
furi_assert(max_name_size);
|
||||
furi_check(name);
|
||||
furi_check(max_name_size);
|
||||
|
||||
uint8_t name_generator_left_i = rand() % COUNT_OF(name_generator_left);
|
||||
uint8_t name_generator_right_i = rand() % COUNT_OF(name_generator_right);
|
||||
@@ -123,9 +123,9 @@ void name_generator_make_detailed_datetime(
|
||||
const char* prefix,
|
||||
DateTime* custom_time,
|
||||
bool prefix_after) {
|
||||
furi_assert(name);
|
||||
furi_assert(max_name_size);
|
||||
furi_assert(prefix);
|
||||
furi_check(name);
|
||||
furi_check(max_name_size);
|
||||
furi_check(prefix);
|
||||
|
||||
DateTime dateTime;
|
||||
if(custom_time) {
|
||||
|
||||
Reference in New Issue
Block a user