mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-22 03:02:06 +00:00
Fix semi-unused variable in lexer.c
This commit is contained in:
@@ -487,9 +487,9 @@ void lex_AddStrings(const struct sLexInitString *lex)
|
||||
{
|
||||
while (lex->tzName) {
|
||||
struct sLexString **ppHash;
|
||||
uint32_t hash;
|
||||
uint32_t hash = lexcalchash(lex->tzName);
|
||||
|
||||
ppHash = &tLexHash[hash = lexcalchash(lex->tzName)];
|
||||
ppHash = &tLexHash[hash];
|
||||
while (*ppHash)
|
||||
ppHash = &((*ppHash)->pNext);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user