From 6c6cbecb10d1612a14ed86efaa54fdfb14b6a234 Mon Sep 17 00:00:00 2001 From: Alam Ed Arias Date: Mon, 8 Aug 2016 21:30:20 -0400 Subject: [PATCH] I do not think you wanted to break on EVERYTHING --- src/r_things.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/r_things.c b/src/r_things.c index ff9c604ff..5e9d93b70 100644 --- a/src/r_things.c +++ b/src/r_things.c @@ -331,10 +331,11 @@ static boolean R_AddSingleSpriteDef(const char *sprname, spritedef_t *spritedef, case SRF_2D: // both Left and Right rotations // we test to see whether the left and right slots are present if ((sprtemp[frame].lumppat[2] == LUMPERROR) || (sprtemp[frame].lumppat[6] == LUMPERROR)) + { I_Error("R_AddSingleSpriteDef: Sprite %s frame %c is missing rotations", sprname, R_Frame2Char(frame)); break; - + } default: // must have all 8 frames for (rotation = 0; rotation < 8; rotation++)