mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-11 06:09:08 -07:00
Code error fixes
This commit is contained in:
@@ -7,6 +7,7 @@ typedef struct InfraredBruteForce InfraredBruteForce;
|
||||
|
||||
InfraredBruteForce* infrared_brute_force_alloc();
|
||||
void infrared_brute_force_free(InfraredBruteForce* brute_force);
|
||||
void infrared_brute_force_reset(InfraredBruteForce* brute_force);
|
||||
void infrared_brute_force_set_db_filename(InfraredBruteForce* brute_force, const char* db_filename);
|
||||
bool infrared_brute_force_calculate_messages(InfraredBruteForce* brute_force);
|
||||
bool infrared_brute_force_start(
|
||||
|
||||
@@ -51,7 +51,7 @@ static void loader_menu_callback(void* _ctx, uint32_t index) {
|
||||
furi_assert(application->link);
|
||||
|
||||
if(strcmp(application->link, "NULL") != 0) {
|
||||
LoaderStatus status = loader_start(NULL, "Applications", application->link);
|
||||
loader_start(NULL, "Applications", application->link);
|
||||
} else {
|
||||
if(!loader_lock(loader_instance)) {
|
||||
FURI_LOG_E(TAG, "Loader is locked");
|
||||
|
||||
Reference in New Issue
Block a user