We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ab353 commit 73f8e8eCopy full SHA for 73f8e8e
src/app_config.c
@@ -64,9 +64,8 @@ int save_app_config(void) {
64
fprintf(file, "osd%d:\n", i);
65
if (!imgEmpty)
66
fprintf(file, " img: %s\n", osds[i].img);
67
- if (textEmpty)
68
- continue;
69
- fprintf(file, " text: %s\n", osds[i].text);
+ if (!textEmpty)
+ fprintf(file, " text: %s\n", osds[i].text);
70
fprintf(file, " font: %s\n", osds[i].font);
71
fprintf(file, " opal: %d\n", osds[i].opal);
72
fprintf(file, " posx: %d\n", osds[i].posx);
0 commit comments