summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2014-12-06 06:22:44 +0100
committerSubv <subv2112@gmail.com>2014-12-13 19:40:15 +0100
commitcc81a510e3ab61786f83df1cb2e55a0b29b7eefb (patch)
tree978347d1c02b21e191adbd4c97ef683e0cdd7589 /src/core
parentSemaphores: Addressed some style issues (diff)
downloadyuzu-cc81a510e3ab61786f83df1cb2e55a0b29b7eefb.tar
yuzu-cc81a510e3ab61786f83df1cb2e55a0b29b7eefb.tar.gz
yuzu-cc81a510e3ab61786f83df1cb2e55a0b29b7eefb.tar.bz2
yuzu-cc81a510e3ab61786f83df1cb2e55a0b29b7eefb.tar.lz
yuzu-cc81a510e3ab61786f83df1cb2e55a0b29b7eefb.tar.xz
yuzu-cc81a510e3ab61786f83df1cb2e55a0b29b7eefb.tar.zst
yuzu-cc81a510e3ab61786f83df1cb2e55a0b29b7eefb.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/semaphore.cpp5
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:
return current_usage == max_count;
}
- ResultVal<bool> SyncRequest() override {
- // TODO(Subv): ImplementMe
- return MakeResult<bool>(false);
- }
-
ResultVal<bool> WaitSynchronization() override {
bool wait = current_usage == max_count;