core_timing: Namespace all functions and constants in core_timing's header

All of these variables and functions are related to timings and should be within the namespace.
This commit is contained in:
Lioncash
2018-04-30 03:24:27 -04:00
parent 81a0082f6b
commit 0197e28cc9
9 changed files with 18 additions and 14 deletions

View File

@ -146,7 +146,8 @@ void Thread::WakeAfterDelay(s64 nanoseconds) {
if (nanoseconds == -1)
return;
CoreTiming::ScheduleEvent(nsToCycles(nanoseconds), ThreadWakeupEventType, callback_handle);
CoreTiming::ScheduleEvent(CoreTiming::nsToCycles(nanoseconds), ThreadWakeupEventType,
callback_handle);
}
void Thread::CancelWakeupTimer() {