Jump to content
  • 0
Sign in to follow this  
chojuro

Compiler error lnk @clif.c

Question

this line make me having error

from this

//To identify disguised characters.
static inline bool disguised(struct block_list* bl)
{
	struct map_session_data* sd = BL_CAST(BL_PC, bl);
	if (sd == NULL || sd->disguise == -1)
		return false;
	return true;
}

to this

//To identify disguised characters.
bool clif_isdisguised(struct block_list* bl)
{
	struct map_session_data* sd = BL_CAST(BL_PC, bl);
	if (sd == NULL || sd->disguise == -1)
		return false;
	return true;
}

 

image.png

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

no sure what is your issue.

why you changed

clif_isdisguised

to

 

disguised

?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.