20.03.2013, 08:15
If you don't provide needed code, then we most probably can't help you.
We need to see where you placed main().
I personally suspect you putting it inside a directive if-else (#if #else #endif) statement, which won't get called because the if/else doesn't fall through.
Example:
We need to see where you placed main().
I personally suspect you putting it inside a directive if-else (#if #else #endif) statement, which won't get called because the if/else doesn't fall through.
Example:
pawn Код:
#if defined FILTERSCRIPT
main() { }
#endif
//This won't execute as FILTERSCRIPT isn't defined

