Remove most Hungarian notation in section module

Seriously, it sucks.
This commit is contained in:
ISSOtm
2020-09-06 20:43:13 +02:00
parent 14be01880d
commit 304bb9f902
10 changed files with 204 additions and 204 deletions

View File

@@ -69,7 +69,7 @@ bool warnings; /* True to enable warnings, false to disable them. */
struct sOptionStackEntry {
struct sOptions Options;
struct sOptionStackEntry *pNext;
struct sOptionStackEntry *next;
};
struct sOptionStackEntry *pOptionStack;
@@ -196,7 +196,7 @@ void opt_Push(void)
fatalerror("No memory for option stack");
pOpt->Options = CurrentOptions;
pOpt->pNext = pOptionStack;
pOpt->next = pOptionStack;
pOptionStack = pOpt;
}
@@ -209,7 +209,7 @@ void opt_Pop(void)
pOpt = pOptionStack;
opt_SetCurrentOptions(&(pOpt->Options));
pOptionStack = pOpt->pNext;
pOptionStack = pOpt->next;
free(pOpt);
}