mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-27 14:12:36 +00:00
Fix indexing
This commit is contained in:
parent
144672fada
commit
ad92a5f27d
1 changed files with 1 additions and 1 deletions
2
stat.c
2
stat.c
|
@ -560,7 +560,7 @@ static void stat_dump_stats_table(stat_size_table_t table, const char *string, u
|
|||
if (!table)
|
||||
return;
|
||||
|
||||
for (i = 0, j = 0; i < ST_SIZE; i++) {
|
||||
for (i = 0, j = 1; i < ST_SIZE; i++) {
|
||||
stat_size_entry_t *entry;
|
||||
|
||||
if (!(entry = table[i]))
|
||||
|
|
Loading…
Reference in a new issue