Remove key casts from hashmap function calls

We don't need the (char*) or (void*) casts anymore. You may need to
`git submodule update --init`.
This commit is contained in:
Dav999-v
2023-03-05 21:42:21 +01:00
committed by Misa Elizabeth Kai
parent 074d54b42b
commit 310f3489d2
4 changed files with 10 additions and 10 deletions

View File

@@ -465,7 +465,7 @@ static bool find_font_by_name(FontContainer* container, const char* name, uint8_
}
uintptr_t i;
if (hashmap_get(container->map_name_idx, (char*) name, SDL_strlen(name), &i))
if (hashmap_get(container->map_name_idx, name, SDL_strlen(name), &i))
{
*idx = i;
return true;