got rid of void* in menu-list, didnt save the file last time

This commit is contained in:
NightlyFox 2018-09-21 23:28:41 -05:00
parent 12761b1026
commit 7dbc5b24f7

View File

@ -190,7 +190,7 @@ int themeMenuScan(const char* target) {
menuAddEntry(me);
else
menuDeleteEntry(me);
free((void*)name);//This was allocated by calloc and copied over by strcpy
free(name);//This was allocated by calloc and copied over by strcpy
}
closedir(dir);