From 44ec13169da0c76d174b730acef27501f0632f04 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Thu, 5 Mar 2020 10:39:29 -0500 Subject: [PATCH] pl: Removed unneeded plExit call from _plInitialize on errors, which is not needed with new-ipc. --- nx/source/services/pl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/nx/source/services/pl.c b/nx/source/services/pl.c index b8f9187c..9e33e77b 100644 --- a/nx/source/services/pl.c +++ b/nx/source/services/pl.c @@ -29,8 +29,6 @@ Result _plInitialize(void) { } } - if (R_FAILED(rc)) plExit(); - return rc; }