Even more conversion, lots of superfluous macro removal
This commit is contained in:
+2
-2
@@ -35,7 +35,7 @@ static int pr_depth;
|
||||
static int localstack[LOCALSTACK_SIZE];
|
||||
static int localstack_used;
|
||||
|
||||
qboolean pr_trace;
|
||||
bool pr_trace;
|
||||
dfunction_t *pr_xfunction;
|
||||
int pr_xstatement;
|
||||
int pr_argc;
|
||||
@@ -144,7 +144,7 @@ static void PR_PrintStatement (dstatement_t *s)
|
||||
{
|
||||
int i;
|
||||
|
||||
if ((unsigned int)s->op < Q_COUNTOF(pr_opnames))
|
||||
if ((unsigned int)s->op < std::size(pr_opnames))
|
||||
{
|
||||
Con_Printf("%s ", pr_opnames[s->op]);
|
||||
i = strlen(pr_opnames[s->op]);
|
||||
|
||||
Reference in New Issue
Block a user