Parcourir la source

Kernel: Fix a warning introduced with ResourceLimit, and remove the fallback code to prevent it from happening again.

Emmanuel Gil Peyrot il y a 11 ans
Parent
commit
b8f93e6b18
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      src/core/hle/kernel/kernel.h

+ 1 - 2
src/core/hle/kernel/kernel.h

@@ -85,10 +85,9 @@ public:
         case HandleType::Redirection:
         case HandleType::Process:
         case HandleType::AddressArbiter:
+        case HandleType::ResourceLimit:
             return false;
         }
-
-        return false;
     }
 
 public: