attempt hotloading if element doesn't exist

This commit is contained in:
biglyderv 2025-03-25 21:25:31 -04:00
parent 8878053ee0
commit c02e8aa59a
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
2 changed files with 10 additions and 1 deletions

View file

@ -38,3 +38,4 @@ ocean;land;sea
planet;earth;ocean
planet;land;ocean
star;fire;sky
pollution;air;dust

View file

@ -56,6 +56,14 @@ int main(int argc, char *argv[]) {
uintptr_t result;
hashmap_get(elements, command_re, strlen(command_re), &result);
// todo: better
if (result == 0) {
load_elements(elements, combo_file, 0) ||
load_elements(elements, "bin/" combo_file, 0);
hashmap_get(elements, command_re, strlen(command_re), &result);
}
if (result == 0) {
printf("You didn't make anything.\n");
continue;
@ -72,7 +80,7 @@ int main(int argc, char *argv[]) {
if (fptr == NULL)
continue;
fwrite(res_str, sizeof(char), strlen(res_str), fptr);
fwrite("\n",sizeof(char),1,fptr);
fwrite("\n", sizeof(char), 1, fptr);
fclose(fptr);
}