Forgot to remove some debug stuff

This commit is contained in:
TehRealSalt 2018-03-29 12:01:04 -04:00
parent cde733f850
commit e9c2b09c24

View file

@ -4310,7 +4310,7 @@ static char *M_GetConditionString(condition_t cond)
} }
} }
#define NUMCHECKLIST 64 #define NUMCHECKLIST 23
static void M_DrawChecklist(void) static void M_DrawChecklist(void)
{ {
INT32 i, line = 0, c, lastid; INT32 i, line = 0, c, lastid;
@ -4335,8 +4335,6 @@ static void M_DrawChecklist(void)
UINT8 achieved = M_CheckCondition(&cond); UINT8 achieved = M_CheckCondition(&cond);
char *str = M_GetConditionString(cond); char *str = M_GetConditionString(cond);
CONS_Printf("%d-%d\n", i, c);
if (!str) if (!str)
continue; continue;
@ -4360,10 +4358,7 @@ static void M_DrawChecklist(void)
++line; ++line;
if (line >= NUMCHECKLIST) if (line >= NUMCHECKLIST)
{
CONS_Printf("out of space\n");
break; break;
}
} }
} }
#undef NUMCHECKLIST #undef NUMCHECKLIST