diff options
| -rw-r--r-- | src/core/hle/kernel/semaphore.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/kernel/semaphore.cpp b/src/core/hle/kernel/semaphore.cpp index c7afe49fc..216c97835 100644 --- a/src/core/hle/kernel/semaphore.cpp +++ b/src/core/hle/kernel/semaphore.cpp | |||
| @@ -34,11 +34,6 @@ public: | |||
| 34 | return current_usage == max_count; | 34 | return current_usage == max_count; |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | ResultVal<bool> SyncRequest() override { | ||
| 38 | // TODO(Subv): ImplementMe | ||
| 39 | return MakeResult<bool>(false); | ||
| 40 | } | ||
| 41 | |||
| 42 | ResultVal<bool> WaitSynchronization() override { | 37 | ResultVal<bool> WaitSynchronization() override { |
| 43 | bool wait = current_usage == max_count; | 38 | bool wait = current_usage == max_count; |
| 44 | 39 | ||