1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-07-01 00:48:30 +02: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:
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; 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; *idx = i;
return true; return true;

View File

@ -162,7 +162,7 @@ const TextboxFormat* gettext_cutscene(const std::string& script_id, const std::s
} }
uintptr_t ptr_cutscene_map; uintptr_t ptr_cutscene_map;
bool found = hashmap_get(map, (void*) map_script_key, SDL_strlen(map_script_key), &ptr_cutscene_map); bool found = hashmap_get(map, map_script_key, SDL_strlen(map_script_key), &ptr_cutscene_map);
hashmap* cutscene_map = (hashmap*) ptr_cutscene_map; hashmap* cutscene_map = (hashmap*) ptr_cutscene_map;
if (!found || cutscene_map == NULL) if (!found || cutscene_map == NULL)
@ -178,7 +178,7 @@ const TextboxFormat* gettext_cutscene(const std::string& script_id, const std::s
} }
uintptr_t ptr_format; uintptr_t ptr_format;
found = hashmap_get(cutscene_map, (void*) key, alloc_len-1, &ptr_format); found = hashmap_get(cutscene_map, key, alloc_len-1, &ptr_format);
const TextboxFormat* format = (TextboxFormat*) ptr_format; const TextboxFormat* format = (TextboxFormat*) ptr_format;
VVV_free(key); VVV_free(key);
@ -294,7 +294,7 @@ bool is_cutscene_translated(const std::string& script_id)
} }
uintptr_t ptr_unused; uintptr_t ptr_unused;
return hashmap_get(map, (void*) map_script_key, SDL_strlen(map_script_key), &ptr_unused); return hashmap_get(map, map_script_key, SDL_strlen(map_script_key), &ptr_unused);
} }
uint32_t toupper_ch(uint32_t ch) uint32_t toupper_ch(uint32_t ch)

View File

@ -244,7 +244,7 @@ static void sync_lang_file(const std::string& langcode)
hashmap* map = map_translation_cutscene; hashmap* map = map_translation_cutscene;
uintptr_t ptr_cutscene_map; uintptr_t ptr_cutscene_map;
bool found = hashmap_get(map, (void*) cutscene_id, SDL_strlen(cutscene_id), &ptr_cutscene_map); bool found = hashmap_get(map, cutscene_id, SDL_strlen(cutscene_id), &ptr_cutscene_map);
hashmap* cutscene_map = (hashmap*) ptr_cutscene_map; hashmap* cutscene_map = (hashmap*) ptr_cutscene_map;
if (!found || cutscene_map == NULL) if (!found || cutscene_map == NULL)
{ {
@ -271,7 +271,7 @@ static void sync_lang_file(const std::string& langcode)
} }
uintptr_t ptr_format; uintptr_t ptr_format;
found = hashmap_get(cutscene_map, (void*) eng_prefixed, alloc_len-1, &ptr_format); found = hashmap_get(cutscene_map, eng_prefixed, alloc_len-1, &ptr_format);
const TextboxFormat* format = (TextboxFormat*) ptr_format; const TextboxFormat* format = (TextboxFormat*) ptr_format;
VVV_free(eng_prefixed); VVV_free(eng_prefixed);

View File

@ -129,7 +129,7 @@ static void map_store_translation(Textbook* textbook, hashmap* map, const char*
return; return;
} }
hashmap_set(map, (void*) tb_eng, SDL_strlen(tb_eng), (uintptr_t) tb_tra); hashmap_set(map, tb_eng, SDL_strlen(tb_eng), (uintptr_t) tb_tra);
} }
unsigned char form_for_count(int n) unsigned char form_for_count(int n)
@ -643,7 +643,7 @@ static void loadtext_cutscenes(bool custom_level)
hashmap* cutscene_map = hashmap_create(); hashmap* cutscene_map = hashmap_create();
hashmap_set_free( hashmap_set_free(
map, map,
(void*) script_id, script_id,
SDL_strlen(script_id), SDL_strlen(script_id),
(uintptr_t) cutscene_map, (uintptr_t) cutscene_map,
callback_free_map_value, callback_free_map_value,
@ -704,7 +704,7 @@ static void loadtext_cutscenes(bool custom_level)
{ {
continue; continue;
} }
hashmap_set(cutscene_map, (void*) tb_eng, SDL_strlen(tb_eng), (uintptr_t) tb_format); hashmap_set(cutscene_map, tb_eng, SDL_strlen(tb_eng), (uintptr_t) tb_format);
} }
} }
} }
@ -1072,7 +1072,7 @@ void loadlanguagelist(void)
const char* map_lookup_text(hashmap* map, const char* eng, const char* fallback) const char* map_lookup_text(hashmap* map, const char* eng, const char* fallback)
{ {
uintptr_t ptr_tra; uintptr_t ptr_tra;
bool found = hashmap_get(map, (void*) eng, SDL_strlen(eng), &ptr_tra); bool found = hashmap_get(map, eng, SDL_strlen(eng), &ptr_tra);
const char* tra = (const char*) ptr_tra; const char* tra = (const char*) ptr_tra;
if (found && tra != NULL && tra[0] != '\0') if (found && tra != NULL && tra[0] != '\0')