Просмотр исходного кода

Semaphore: Removed an unneeded function

Subv 11 лет назад
Родитель
Сommit
cc81a510e3
1 измененных файлов с 0 добавлено и 5 удалено
  1. 0 5
      src/core/hle/kernel/semaphore.cpp

+ 0 - 5
src/core/hle/kernel/semaphore.cpp

@@ -34,11 +34,6 @@ public:
         return current_usage == max_count;
         return current_usage == max_count;
     }
     }
 
 
-    ResultVal<bool> SyncRequest() override {
-        // TODO(Subv): ImplementMe
-        return MakeResult<bool>(false);
-    }
-
     ResultVal<bool> WaitSynchronization() override {
     ResultVal<bool> WaitSynchronization() override {
         bool wait = current_usage == max_count;
         bool wait = current_usage == max_count;