-z now disables stereo sound insted of enabling it, because it is on by default anyway

This commit is contained in:
pagefault
2004-10-13 18:40:14 +00:00
parent 61c3c04455
commit 16499591fb
4 changed files with 4 additions and 4 deletions

View File

@@ -321,7 +321,7 @@ int pccmdline(void)
autoloadstate=my_atoi(argv[p+1]) + 1; autoloadstate=my_atoi(argv[p+1]) + 1;
p++; p++;
} }
else StereoSound=1; else StereoSound=0;
// FIX STATMAT // FIX STATMAT
break; break;
} }

View File

@@ -325,7 +325,7 @@ printf("Hello the gui should now be off.");
// p++; // p++;
// } // }
StereoSound=1; StereoSound=0;
// FIX STATMAT // FIX STATMAT
break; break;

View File

@@ -1146,7 +1146,7 @@ SECTION .data
%ifdef __MSDOS__ %ifdef __MSDOS__
db ' -3 Enable triple buffering (disables vsync)',13,10 db ' -3 Enable triple buffering (disables vsync)',13,10
%endif %endif
db ' -z Enable Stereo Sound',13,10 db ' -z Disable Stereo Sound',13,10
; FIX STATMAT ; FIX STATMAT
%ifdef __WIN32__ %ifdef __WIN32__
db ' -zs # Auto load specified save state slot on startup ',13,10 db ' -zs # Auto load specified save state slot on startup ',13,10

View File

@@ -613,7 +613,7 @@ int pccmdline(void)
autoloadstate=my_atoi(argv[p+1]) + 1; autoloadstate=my_atoi(argv[p+1]) + 1;
p++; p++;
} }
else StereoSound=1; else StereoSound=0;
// FIX STATMAT // FIX STATMAT
break; break;
} }