aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMary <mary@mary.zone>2023-05-07 22:50:45 +0200
committerGitHub <noreply@github.com>2023-05-07 20:50:45 +0000
commit5440d4ad5c5421a474a61e582e524ced5bd65547 (patch)
treeca7021e5fbb6ab0d9b220821738f21e6618cd0db /src
parentdde208b480f3e2aeb0e3abc15857d031ceb22bf4 (diff)
misc: Switch ProcessResult to a class (#4846)1.1.765
This avoid giant copies being performed when being returned or passed.
Diffstat (limited to 'src')
-rw-r--r--src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs b/src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs
index 2801e4e0..cf8168f7 100644
--- a/src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs
+++ b/src/Ryujinx.HLE/Loaders/Processes/ProcessResult.cs
@@ -9,7 +9,7 @@ using System.Linq;
namespace Ryujinx.HLE.Loaders.Processes
{
- public struct ProcessResult
+ public class ProcessResult
{
public static ProcessResult Failed => new(null, new ApplicationControlProperty(), false, false, null, 0, 0, 0, TitleLanguage.AmericanEnglish);