Skip to content

Commit

Permalink
libcommon|Hexen|Debug: Replaced fatal error with assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 27, 2013
1 parent 47d853c commit 952ba5f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions doomsday/plugins/common/src/p_saveg.c
Expand Up @@ -1762,11 +1762,7 @@ static void SV_WriteMobj(const mobj_t* original)
break;

default:
# if _DEBUG
/// @todo Fix this fatal error. -jk
if(mo->tracer != NULL)
Con_Error("SV_WriteMobj: Mobj using tracer. Possibly saved incorrectly.");
# endif
DENG_ASSERT(mo->tracer == NULL); /// @todo Tracer won't be saved correctly?
SV_WriteLong(PTR2INT(mo->tracer));
break;
}
Expand Down

0 comments on commit 952ba5f

Please sign in to comment.