remove assert: it's fine to close without saving

This commit is contained in:
Eric House 2014-09-10 06:37:32 -07:00
parent 39b9c32fd7
commit b333e3959f

View file

@ -180,7 +180,8 @@ stack_destroy( StackCtxt* stack )
if ( !!stack->data ) {
stream_destroy( stack->data );
}
ASSERT_NOT_DIRTY( stack );
/* Ok to close with a dirty stack, e.g. if not saving a deleted game */
// ASSERT_NOT_DIRTY( stack );
XP_FREE( stack->mpool, stack );
} /* stack_destroy */