diff options
author | Subv <subv2112@gmail.com> | 2017-01-01 22:59:30 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2017-01-04 21:58:46 +0100 |
commit | 7abf1853907fe086753df0031262b668a2da88b0 (patch) | |
tree | 033c38e1d98f209c32c1378419468212729877b4 /src/core/hle/kernel/kernel.h | |
parent | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter. (diff) | |
download | yuzu-7abf1853907fe086753df0031262b668a2da88b0.tar yuzu-7abf1853907fe086753df0031262b668a2da88b0.tar.gz yuzu-7abf1853907fe086753df0031262b668a2da88b0.tar.bz2 yuzu-7abf1853907fe086753df0031262b668a2da88b0.tar.lz yuzu-7abf1853907fe086753df0031262b668a2da88b0.tar.xz yuzu-7abf1853907fe086753df0031262b668a2da88b0.tar.zst yuzu-7abf1853907fe086753df0031262b668a2da88b0.zip |
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r-- | src/core/hle/kernel/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 67eae93f2..2680f89c9 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h @@ -145,7 +145,7 @@ public: * Add a thread to wait on this object * @param thread Pointer to thread to add */ - void AddWaitingThread(SharedPtr<Thread> thread); + virtual void AddWaitingThread(SharedPtr<Thread> thread); /** * Removes a thread from waiting on this object (e.g. if it was resumed already) |