Skip to content

Commit f19a3b5

Browse files
committed
Logo: fix --file-raw doesn't work
Fix #539 Ref hykilpikonna/hyfetch#173
1 parent eb308e1 commit f19a3b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/logo/option.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ bool ffParseLogoCommandOptions(FFLogoOptions* options, const char* key, const ch
126126
ffOptionParseString(key, value, &options->source);
127127
options->type = FF_LOGO_TYPE_FILE;
128128
}
129-
else if(strcasecmp(key, "raw") == 0)
129+
else if(strcasecmp(subKey, "raw") == 0)
130130
{
131131
ffOptionParseString(key, value, &options->source);
132132
options->type = FF_LOGO_TYPE_FILE_RAW;

0 commit comments

Comments
 (0)