Re: Undeclared Identifier.
Did you verify your paths?
Re: Undeclared Identifier.
Quote:
Originally Posted by
rebora2007
Did you verify your paths?
yes, try this, make sure everything points to the proper place. If all else fails, do a forward declaration of the int, or change it to the actual constant that the variable represents
Re: Undeclared Identifier.
Quote:
Originally Posted by
cmb
yes, try this, make sure everything points to the proper place. If all else fails, do a forward declaration of the int, or change it to the actual constant that the variable represents
I'm not sure the clean source needs any edits.
Re: Undeclared Identifier.
the soruce need one little edit...
You get that error because project.cpp
and definejob.h is different..
if you check MAX_MONSTER_LEVEL
in definejob.h and over it you will se it says;
Code:
#if __HERO129_VER15 // __HERO129_VER15 // 15Â÷ È÷¾î·Î ·¹º§È®Àå
#define MAX_LEGEND_LEVEL 129
#define MAX_MONSTER_LEVEL 160
edit that to
Code:
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ È÷¾î·Î ·¹º§È®Àå
#define MAX_LEGEND_LEVEL 129
#define MAX_MONSTER_LEVEL 160
and compile again =)
Re: Undeclared Identifier.
Quote:
Originally Posted by
wakazaki
the soruce need one little edit...
You get that error because project.cpp
and definejob.h is different..
if you check MAX_MONSTER_LEVEL
in definejob.h and over it you will se it says;
Code:
#if __HERO129_VER15 // __HERO129_VER15 // 15Â÷ È÷¾î·Î ·¹º§È®Àå
#define MAX_LEGEND_LEVEL 129
#define MAX_MONSTER_LEVEL 160
edit that to
Code:
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ È÷¾î·Î ·¹º§È®Àå
#define MAX_LEGEND_LEVEL 129
#define MAX_MONSTER_LEVEL 160
and compile again =)
Again, wakazaki saved the day :laugh: