D:\Flyff Source\Program\_Interface\WndTaskBar.cpp(8296): error C2065: 'm_bPickup_TK' : undeclared identifier
anyone know how to fix this ??
please help me
anyone know how to fix this ??
please help me
first of all i would like to thank you for Giving a HelpQuote:
That's adeil . task..so define it to wndtaskbar.h according on which HUD is that
Code:int m_bPickup_TK;
int m_bPickup_TK;
And what is C++ based on?Quote:
We are not using C, we are using C++.
So it isnt the same.
CMover* Mover_ptr=NULL;
if(!Mover_ptr)
printf("blabla");
int x=1;
if(x)
printf("blabla");
typedef int BOOL;
Jesus, you dont realize it, mhm ? boolean type only got true or false. Interger −2.147.483.648 till 2.147.483.647.Quote:
And what is C++ based on, smartass?
If numerical values are not working as bool so why can we do things lik
orCode:CMover* Mover_ptr=NULL; if(!Mover_ptr) printf("blabla");
Code:int x=1; if(x) printf("blabla");
If you take a look into WinDef.h
Code:typedef int BOOL;
false=0Quote:
Jesus, you dont realize it, mhm ? boolean type only got true or false. Interger −2.147.483.648 till 2.147.483.647.
And lawl, you only check if x even exists nothing more.
Check that link [Only registered and activated users can see links. Click Here To Register...]Quote:
false=0
true= anything besides 0
...
And it checks if x is !0 and if thats the case it executes the printf...
Also if you are so pro maybe explain why Visual Studio (cause thats what we use to compile Flyff) defines BOOL as integer.