@@ -1009,6 +1009,10 @@ static void parseOption(FFinstance* instance, FFdata* data, const char* key, con
10091009 optionParseString (key , value , & instance -> config .cpuUsage .errorFormat );
10101010 else if (strcasecmp (key , "--gpu-key" ) == 0 )
10111011 optionParseString (key , value , & instance -> config .gpu .key );
1012+ else if (strcasecmp (key , "--gpu-format" ) == 0 )
1013+ optionParseString (key , value , & instance -> config .gpu .outputFormat );
1014+ else if (strcasecmp (key , "--gpu-error" ) == 0 )
1015+ optionParseString (key , value , & instance -> config .gpu .errorFormat );
10121016 else if (strcasecmp (key , "--memory-key" ) == 0 )
10131017 optionParseString (key , value , & instance -> config .memory .key );
10141018 else if (strcasecmp (key , "--memory-format" ) == 0 )
@@ -1057,11 +1061,11 @@ static void parseOption(FFinstance* instance, FFdata* data, const char* key, con
10571061 optionParseString (key , value , & instance -> config .song .outputFormat );
10581062 else if (strcasecmp (key , "--song-error" ) == 0 )
10591063 optionParseString (key , value , & instance -> config .song .errorFormat );
1060- else if (strcasecmp (key , "--date-time -key" ) == 0 )
1064+ else if (strcasecmp (key , "--datetime -key" ) == 0 )
10611065 optionParseString (key , value , & instance -> config .dateTime .key );
1062- else if (strcasecmp (key , "--date-time -format" ) == 0 )
1066+ else if (strcasecmp (key , "--datetime -format" ) == 0 )
10631067 optionParseString (key , value , & instance -> config .dateTime .outputFormat );
1064- else if (strcasecmp (key , "--date-time -error" ) == 0 )
1068+ else if (strcasecmp (key , "--datetime -error" ) == 0 )
10651069 optionParseString (key , value , & instance -> config .dateTime .errorFormat );
10661070 else if (strcasecmp (key , "--date-key" ) == 0 )
10671071 optionParseString (key , value , & instance -> config .date .key );
0 commit comments