|
|
| version 1.1, 2003/10/23 07:20:43 | version 1.2, 2003/11/14 10:32:36 |
|---|---|
| Line 20 UINT32 macos_gettick(void) { | Line 20 UINT32 macos_gettick(void) { |
| UnsignedWide current; | UnsignedWide current; |
| Microseconds(¤t); | Microseconds(¤t); |
| return((UINT32)(current.lo / 1000)); | return((UINT32)((current.hi * 4294967) + (current.lo / 1000))); |
| } | } |