瀏覽代碼

fixup! hle: kernel: Migrate to KHandleTable.

bunnei 5 年之前
父節點
當前提交
57f80c74b6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h

+ 1 - 1
src/core/hle/kernel/k_scoped_scheduler_lock_and_sleep.h

@@ -17,7 +17,7 @@ namespace Kernel {
 
 class [[nodiscard]] KScopedSchedulerLockAndSleep {
 public:
-    explicit KScopedSchedulerLockAndSleep(KernelCore& kernel, KThread* t, s64 timeout)
+    explicit KScopedSchedulerLockAndSleep(KernelCore & kernel, KThread * t, s64 timeout)
         : kernel(kernel), thread(t), timeout_tick(timeout) {
         // Lock the scheduler.
         kernel.GlobalSchedulerContext().scheduler_lock.Lock();