17.05.2009, 11:28
Quote:
Originally Posted by -The_Badger-
why do you need to define it anyway? Couldn't you just do:
Код:
New debug=0; { if(debug==0)return debug=1; return 1; } |
1) Variables are at 0 by default in Pawn so theres no need for the =0,
2) Its new not New,
You could do this if you really wanted to lol
pawn Код:
new _DEBUG;
#define Debug _DEBUG
// Then you could just do
Debug = true;
Debug = false;