Remove invalid assert

This commit is contained in:
Campbell Barton 2018-07-13 17:59:26 +02:00
parent f6367ecfb6
commit a6ec402f5a
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static int ed_undo_step(bContext *C, int step, const char *undoname)
}
/* TODO(campbell), could use simple optimization. */
BLI_assert(step_data_from_name != wm->undo_stack->step_active);
/* Pointers match on redo. */
step_for_callback = (
BLI_findindex(&wm->undo_stack->steps, step_data_from_name) <
BLI_findindex(&wm->undo_stack->steps, wm->undo_stack->step_active)) ? 1 : -1;