mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 14:08:36 -07:00
Main Menu: Fix crash with DEBUG=1 with custom apps
This commit is contained in:
@@ -34,6 +34,7 @@
|
|||||||
- Storage: Fix process aliases in rename (by @Willy-JL)
|
- Storage: Fix process aliases in rename (by @Willy-JL)
|
||||||
- Desktop: Show "safe to unplug the USB cable" even when locked (by @Willy-JL)
|
- Desktop: Show "safe to unplug the USB cable" even when locked (by @Willy-JL)
|
||||||
- GUI: Some text and UI fixes (by @Willy-JL)
|
- GUI: Some text and UI fixes (by @Willy-JL)
|
||||||
|
- Main Menu: Fix crash with DEBUG=1 with custom apps (by @Willy-JL)
|
||||||
- UL: RFID: Electra fix non-initialized encoded epilogue on render (by @Leptopt1los)
|
- UL: RFID: Electra fix non-initialized encoded epilogue on render (by @Leptopt1los)
|
||||||
- OFW: NFC: Fix changing UID (by @gornekich)
|
- OFW: NFC: Fix changing UID (by @gornekich)
|
||||||
- OFW: Settings: Refactor fixes (by @Astrrra)
|
- OFW: Settings: Refactor fixes (by @Astrrra)
|
||||||
|
|||||||
@@ -233,7 +233,7 @@ bool loader_menu_load_fap_meta(
|
|||||||
}
|
}
|
||||||
*icon = malloc(sizeof(Icon));
|
*icon = malloc(sizeof(Icon));
|
||||||
FURI_CONST_ASSIGN((*icon)->frame_count, 1);
|
FURI_CONST_ASSIGN((*icon)->frame_count, 1);
|
||||||
FURI_CONST_ASSIGN((*icon)->frame_rate, 0);
|
FURI_CONST_ASSIGN((*icon)->frame_rate, 1);
|
||||||
FURI_CONST_ASSIGN((*icon)->width, 10);
|
FURI_CONST_ASSIGN((*icon)->width, 10);
|
||||||
FURI_CONST_ASSIGN((*icon)->height, 10);
|
FURI_CONST_ASSIGN((*icon)->height, 10);
|
||||||
FURI_CONST_ASSIGN_PTR((*icon)->frames, malloc(sizeof(const uint8_t*)));
|
FURI_CONST_ASSIGN_PTR((*icon)->frames, malloc(sizeof(const uint8_t*)));
|
||||||
|
|||||||
Reference in New Issue
Block a user