Ok, I am a total newb so please forgive me if I am missing something easy.
I just got a copy of Dev-C++ to compile O 1.10u to fix the 'hidden copper/silver/gold' inventory bug. I followed the instructions for angband compiling found http://rephial.org/wiki/Compiling#s2_4
I am getting his error:
584 C:\Dev-Cpp\Projects\oangband110u\src\main.c `modules' undeclared (first use in this function)
Here is the section: (Offending line in red)
#ifndef _WIN32_WCE
/* Print the name and help for each available module */
for (j = 0; j < (int)N_ELEMENTS(modules); j++)
{
printf(" %s %s\n",
modules[j].name, modules[j].help);
}
#endif
Any help would be appreciated.
Thanks,
Ben
I just got a copy of Dev-C++ to compile O 1.10u to fix the 'hidden copper/silver/gold' inventory bug. I followed the instructions for angband compiling found http://rephial.org/wiki/Compiling#s2_4
I am getting his error:
584 C:\Dev-Cpp\Projects\oangband110u\src\main.c `modules' undeclared (first use in this function)
Here is the section: (Offending line in red)
#ifndef _WIN32_WCE
/* Print the name and help for each available module */
for (j = 0; j < (int)N_ELEMENTS(modules); j++)
{
printf(" %s %s\n",
modules[j].name, modules[j].help);
}
#endif
Any help would be appreciated.
Thanks,
Ben
Comment