From 3b2ff3d6b396bb7d5e511856aa9cc24370e76cf0 Mon Sep 17 00:00:00 2001 From: lizzie Date: Wed, 2 Sep 2026 08:14:26 +0000 Subject: [PATCH] implodes? --- src/core/hle/kernel/svc/svc_info.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/hle/kernel/svc/svc_info.cpp b/src/core/hle/kernel/svc/svc_info.cpp index 505d2ce6da..e6190ac33a 100644 --- a/src/core/hle/kernel/svc/svc_info.cpp +++ b/src/core/hle/kernel/svc/svc_info.cpp @@ -151,10 +151,6 @@ Result GetInfo(Core::System& system, u64* result, InfoType info_id_type, Handle *result = GetCurrentProcess(system.Kernel()).GetRandomEntropy(info_sub_id); R_SUCCEED(); case InfoType::InitialProcessIdRange: { - enum InitialProcessIdRangeInfo : u64 { - Minimum = 0, - Maximum = 1, - }; LOG_WARNING(Kernel_SVC, "(STUBBED) Attempted to query privileged process id bounds, returned 0/64"); R_UNLESS(handle == InvalidHandle, ResultInvalidHandle); switch (InitialProcessIdRangeInfo(info_sub_id)) {