Add the specified signed number of nanoseconds.
| 320 | |
| 321 | // Add the specified signed number of nanoseconds. |
| 322 | void RarTime::Adjust(int64 ns) |
| 323 | { |
| 324 | ns/=1000000000/TICKS_PER_SECOND; // Convert ns to internal ticks. |
| 325 | itime+=(uint64)ns; |
| 326 | } |
| 327 | |
| 328 | |
| 329 | #ifndef SFX_MODULE |