|
i'm getting this error message at the end of my compile
/home/Owner/mystara/quickmud/src/gquest.c:669: undefined reference to `_smash_colour' collect2: ld returned 1 exit status make: *** [rom] Error 1
this is the part of code that it refers to. any ideas how to fix this?
for (i = 0; i < gquest_info.mob_count; i++) { if ((mob = get_mob_index(gquest_info.mobs[i])) != NULL) { sprintf(buf, "%2d) [%-20s] %-30s (level %3d)\n\r", i + 1, mob->area->name, smash_colour(mob->short_descr), mob->level); send_to_char(buf, ch); } } return;
|