Skip to content

Commit

Permalink
Debug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vs-shirokii committed Jun 6, 2024
1 parent ea2812c commit a7d216d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/d_iwad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,6 @@ int FIWadManager::IdentifyVersion (std::vector<std::string>&wadfiles, const char
RT_ShowWarningMessageBox( str.GetChars() );
};

assert( picks.Size() == wads.Size() );
if( autoname.CompareNoCase( "doom.id.doom2.commercial" ) == 0)
{
if( fileSize != 14604584 )
Expand Down
2 changes: 1 addition & 1 deletion src/playsim/p_lnspec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ bool stairs_isstairs( int special )

int stairs_usespecials( int special )
{
assert( stair_isstairs( special ) );
assert( stairs_isstairs( special ) );
switch( special )
{
case Stairs_BuildDown:
Expand Down

0 comments on commit a7d216d

Please sign in to comment.