Skip to content

Commit

Permalink
tiny reorganization after commit f20e894
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Dec 25, 2023
1 parent f20e894 commit b3b4203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Quake/pr_edict.c
Original file line number Diff line number Diff line change
Expand Up @@ -416,9 +416,9 @@ padded to 20 field width
const char *PR_GlobalString (int ofs)
{
static char line[512];
static const int lastchari = Q_COUNTOF(line) - 2;
const char *s;
int i;
static const int lastchari = Q_COUNTOF(line) - 2;
ddef_t *def;
void *val;

Expand Down Expand Up @@ -447,8 +447,8 @@ const char *PR_GlobalString (int ofs)
const char *PR_GlobalStringNoContents (int ofs)
{
static char line[512];
int i;
static const int lastchari = Q_COUNTOF(line) - 2;
int i;
ddef_t *def;

def = ED_GlobalAtOfs(ofs);
Expand Down

0 comments on commit b3b4203

Please sign in to comment.