Build: Fixed some warnings
This commit is contained in:
parent
f990728ad4
commit
8e2b248e05
11 changed files with 69 additions and 51 deletions
|
@ -63,7 +63,7 @@ void Timer::Clear() {
|
|||
|
||||
/// The timer callback event, called when a timer is fired
|
||||
static void TimerCallback(u64 timer_handle, int cycles_late) {
|
||||
SharedPtr<Timer> timer = timer_callback_handle_table.Get<Timer>(timer_handle);
|
||||
SharedPtr<Timer> timer = timer_callback_handle_table.Get<Timer>(static_cast<Handle>(timer_handle));
|
||||
|
||||
if (timer == nullptr) {
|
||||
LOG_CRITICAL(Kernel, "Callback fired for invalid timer %08X", timer_handle);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue