Fixed callfunc_begin(): The order of the params was wrong!!!

This commit is contained in:
Johnny Bergström 2004-07-16 08:24:10 +00:00
parent c00fffa444
commit 63c2c0a322

View File

@ -609,7 +609,7 @@ native unpause(flag[], const param1[]="",const param2[]="");
* 0 - Runtime error
* -1 - Plugin not found
* -2 - Function not found */
native callfunc_begin(const plugin[]="", const func[]);
native callfunc_begin(const func[], const plugin[]="");
/* Push a parameter (integer, string, float) */
native callfunc_push_int(value);