Skip to content

Commit

Permalink
Add back the previously removed cmdl parameters -alt and -sndpitch
Browse files Browse the repository at this point in the history
  • Loading branch information
AXDOOMER committed May 30, 2020
1 parent 8f01deb commit 031d20d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ void IdentifyVersion (void)
return;
}

if (M_CheckParm ("-altfinal"))
if (M_CheckParm ("-altfinal") || M_CheckParm ("-alt"))
altfinal = true;

p = M_CheckParm ("-iwad");
Expand Down
2 changes: 1 addition & 1 deletion i_sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ void I_sndArbitrateCards(void)
snd_MusicDevice = snd_none;
}
// Check whether to randomly pitch-shift sounds
if (M_CheckParm("-pitch"))
if (M_CheckParm("-pitch") || M_CheckParm("-sndpitch"))
{
pitchshifting = true;
}
Expand Down

0 comments on commit 031d20d

Please sign in to comment.