Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions X32Wav_Xlive.c
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ int main(int argc, char **argv) {
wheader.Junk_bytes= 32716;
//
// manage command-line parameters
while ((input_intch = getopt(argc, argv, "g:f:m:h")) != -1) {
while ((input_intch = getopt(argc, argv, "g:f:m:h:S")) != -1) {
switch ((char)input_intch) {
case 'g':
sscanf(optarg, "%i", &GUI);
Expand Down Expand Up @@ -512,7 +512,7 @@ int main(int argc, char **argv) {
ShowWindow(GetConsoleWindow(), SW_HIDE); // Hide console window
wWinMain(hInstance, hPrevInstance, pCmdLine, nCmdFile);
#else
prinft("GUI mode not supported outside of WIndows\n");
printf("GUI mode not supported outside of Windows\n");
#endif
return 0;
}
Expand Down