From 44621eeb578068deaee02c00be53a55332598456 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 7 Apr 2021 15:30:36 -0700 Subject: [PATCH] kern: who needs __purecall? --- .../include/mesosphere/kern_k_synchronization_object.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp b/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp index ea340a15..1465bbe6 100644 --- a/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp +++ b/libmesosphere/include/mesosphere/kern_k_synchronization_object.hpp @@ -45,7 +45,7 @@ namespace ams::kern { static Result Wait(s32 *out_index, KSynchronizationObject **objects, const s32 num_objects, s64 timeout); public: virtual void Finalize() override; - virtual bool IsSignaled() const = 0; + virtual bool IsSignaled() const { AMS_INFINITE_LOOP(); } virtual void DumpWaiters(); };