made another timer parameter default

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40651
This commit is contained in:
David Anderson 2007-03-17 23:03:56 +00:00
parent 49c9ab6e25
commit ee8780966d

View File

@ -67,7 +67,7 @@ funcenum Timer
* @param flags Flags to set (such as repeatability or auto-Handle closing). * @param flags Flags to set (such as repeatability or auto-Handle closing).
* @return Handle to the timer object. You do not need to call CloseHandle(). * @return Handle to the timer object. You do not need to call CloseHandle().
*/ */
native Handle:CreateTimer(Float:interval, Timer:func, {Handle,_}:value, flags=0); native Handle:CreateTimer(Float:interval, Timer:func, {Handle,_}:value=INVALID_HANDLE, flags=0);
/** /**
* Kills a timer. Use this instead of CloseHandle() if you need more options. * Kills a timer. Use this instead of CloseHandle() if you need more options.