Skip to content

Commit

Permalink
Fixed another TNT/Plut detection glitch
Browse files Browse the repository at this point in the history
Game was getting detected as Doom II, last time I checked I thought it was fine?
Dunno how this bug slipped.
  • Loading branch information
Kippykip committed May 20, 2020
1 parent 8fba9c8 commit 815fb95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -598,9 +598,9 @@ static void IdentifyVersion()
_g->gamemission = doom;
break;
case commercial:
_g->gamemission = doom2;
if(_g->gamemission != pack_tnt && _g->gamemission != pack_plut)
_g->gamemission = doom2;
break;

default:
_g->gamemission = none;
break;
Expand Down

0 comments on commit 815fb95

Please # to comment.