Skip to content
/ osd Public

Commit 73f8e8e

Browse files
committed
Local image files still need additional overlay settings
1 parent a0ab353 commit 73f8e8e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/app_config.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,8 @@ int save_app_config(void) {
6464
fprintf(file, "osd%d:\n", i);
6565
if (!imgEmpty)
6666
fprintf(file, " img: %s\n", osds[i].img);
67-
if (textEmpty)
68-
continue;
69-
fprintf(file, " text: %s\n", osds[i].text);
67+
if (!textEmpty)
68+
fprintf(file, " text: %s\n", osds[i].text);
7069
fprintf(file, " font: %s\n", osds[i].font);
7170
fprintf(file, " opal: %d\n", osds[i].opal);
7271
fprintf(file, " posx: %d\n", osds[i].posx);

0 commit comments

Comments
 (0)