mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
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:
committed by
Misa Elizabeth Kai
parent
074d54b42b
commit
310f3489d2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user