Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gc/ogc/lwp_watchdog.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
#define ticks_to_microsecs(ticks) PPCTicksToUs(ticks)
#define ticks_to_nanosecs(ticks) PPCTicksToNs(ticks)

#define tick_microsecs(ticks) (PPCTicksToUs(ticks)%TB_USPERSEC)
#define tick_nanosecs(ticks) (PPCTicksToNs(ticks)%TB_NSPERSEC)
#define tick_microsecs(ticks) PPCTicksToUs((ticks)%PPC_TIMER_CLOCK)
#define tick_nanosecs(ticks) PPCTicksToNs((ticks)%PPC_TIMER_CLOCK)

#define secs_to_ticks(sec) ((u64)(sec)*PPC_TIMER_CLOCK)
#define millisecs_to_ticks(msec) PPCMsToTicks(msec)
Expand Down
Loading