reverse path order

This commit is contained in:
biglyderv 2025-04-02 20:32:44 -04:00
parent 7a63fcb376
commit ed50d4daba
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
2 changed files with 14 additions and 4 deletions

View file

@ -16,9 +16,9 @@ void init_tables(hashmap *elements, hashmap *inv, hashmap *polls,
load_elements(elements, combo_file, 0) ||
load_elements(elements, "bin/" combo_file, 0);
load_elements(elements_rev, "../elem_data/" combo_file, 2);
load_elements(elements_rev, combo_file, 2) ||
load_elements(elements_rev, "bin/" combo_file, 2);
load_elements(elements_rev, "../elem_data/" combo_file, 3);
load_elements(elements_rev, combo_file, 3) ||
load_elements(elements_rev, "bin/" combo_file, 3);
load_elements(polls, "../elem_data/" poll_file, 2);