diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-12-16 09:55:53 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-12-21 20:22:19 +0100 |
commit | 347a6fa2795a6856c1ad3d623673b62f879227c1 (patch) | |
tree | 62a4ce4d473bbf712b400f2817cba6bab403b992 /src/graphics | |
parent | 08b27c7854cf38d3f03b0607f06c0140d6dc7952 (diff) |
Remove comment
Diffstat (limited to 'src/graphics')
-rw-r--r-- | src/graphics/font_char_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics/font_char_map.c b/src/graphics/font_char_map.c index fc1c2e5..f339853 100644 --- a/src/graphics/font_char_map.c +++ b/src/graphics/font_char_map.c @@ -48,7 +48,7 @@ static void mgl_font_char_map_reorder_nodes(mgl_font_char_map *self, size_t prev while(entry) { const uint32_t hash = entry->key; const size_t index = HASH_TO_INDEX(hash); - mgl_font_char_entry *next_entry = entry->next; /* store next here so the next insert below doesn't cause an infinite loop */ + mgl_font_char_entry *next_entry = entry->next; if(index != i) { /* Remove entry by replacing this entry with the next entry */ |