Added custom style sheet usage comment to command line help for Qt GUI.

This commit is contained in:
Matthew Budd 2020-11-07 15:06:07 -05:00
parent e38793f352
commit 3c2c039f3a
1 changed files with 5 additions and 2 deletions

View File

@ -450,7 +450,7 @@ static void ShowUsage(const char *prog)
puts ("--videolog c Calls mencoder to grab the video and audio streams to\n encode them. Check the documentation for more on this.");
puts ("--mute {0|1} Mutes FCEUX while still passing the audio stream to\n mencoder during avi creation.");
#endif
puts ("--style=KEY Use Qt GUI Style based on supplied key. Available style keys are:\n");
puts ("--style=KEY Use Qt GUI Style based on supplied key. Available system style keys are:\n");
QStringList styleList = QStyleFactory::keys();
@ -464,7 +464,10 @@ static void ShowUsage(const char *prog)
printf("\n"); j=0;
}
}
printf("\n");
printf("\n\n");
printf(" Custom Qt stylesheets (.qss files) may be used by setting an\n");
printf(" environment variable named FCEUX_QT_STYLESHEET equal to the \n");
printf(" full (absolute) path to the qss file.\n");
puts("");
printf("Compiled with SDL version %d.%d.%d\n", SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL );