Jelajahi Sumber

fixup! hle: kernel: Migrate to KHandleTable.

bunnei 5 tahun lalu
induk
melakukan
57f80c74b6
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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();