Skip to content

Commit d8fc459

Browse files
committed
fix missing icon usage
1 parent 5736a4d commit d8fc459

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

base_pack/camera_suite/application.fam

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ App(
77
fap_category="GPIO",
88
fap_description="A camera suite application for the Flipper Zero ESP32-CAM module.",
99
fap_icon="icons/camera_suite.png",
10+
fap_icon_assets="assets",
1011
fap_libs=["assets"],
1112
fap_version="1.4",
1213
fap_weburl="https://github.com/CodyTolene/Flipper-Zero-Cam",
Loading

base_pack/camera_suite/views/camera_suite_view_camera.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
#include "../helpers/camera_suite_custom_event.h"
1919

20+
#include <camera_suite_icons.h>
21+
2022
#define BITMAP_HEADER_LENGTH 62
2123
#define FRAME_BIT_DEPTH 1
2224
#define FRAME_BUFFER_LENGTH 1024
@@ -33,7 +35,6 @@ static const unsigned char bitmap_header[BITMAP_HEADER_LENGTH] = {
3335
0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3436
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x00};
3537

36-
extern const Icon I_DolphinCommon_56x48;
3738
typedef enum {
3839
WorkerEventReserved = (1 << 0), // Reserved for StreamBuffer internal event
3940
WorkerEventStop = (1 << 1),
1.38 KB
Loading

base_pack/unitemp/views/Widgets_view.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
#include "UnitempViews.h"
1919
#include "unitemp_icons.h"
2020

21-
extern const Icon I_DolphinCommon_56x48;
22-
2321
void unitemp_widgets_alloc(void) {
2422
app->widget = widget_alloc();
2523
view_dispatcher_add_view(

0 commit comments

Comments
 (0)