aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Caps
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2021-04-23 22:26:31 +0200
committerGitHub <noreply@github.com>2021-04-23 22:26:31 +0200
commitc46f6879ff9171a1e024965618242e8bad373b6b (patch)
treeb1ce4b4ce61831797377f39be2089aaeecc3c58b /Ryujinx.HLE/HOS/Services/Caps
parent3e61fb0268ea0f52a37c4513dde0ec1f5a6463a2 (diff)
account: add Custom User Profiles support (#2227)
* Initial Impl * Fix names * remove useless ContentManager * Support backgrounds and improve avatar loading * Fix firmware checks * Addresses gdkchan feedback
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Caps')
-rw-r--r--Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs b/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs
index 37cc9bda..35781562 100644
--- a/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs
+++ b/Ryujinx.HLE/HOS/Services/Caps/CaptureManager.cs
@@ -1,7 +1,6 @@
using Ryujinx.Common.Memory;
using Ryujinx.HLE.HOS.Services.Caps.Types;
using SixLabors.ImageSharp;
-using SixLabors.ImageSharp.Formats.Jpeg;
using SixLabors.ImageSharp.PixelFormats;
using System;
using System.IO;
@@ -19,11 +18,6 @@ namespace Ryujinx.HLE.HOS.Services.Caps
public CaptureManager(Switch device)
{
_sdCardPath = device.FileSystem.GetSdCardPath();
-
- SixLabors.ImageSharp.Configuration.Default.ImageFormatsManager.SetEncoder(JpegFormat.Instance, new JpegEncoder()
- {
- Quality = 100
- });
}
public ResultCode SetShimLibraryVersion(ServiceCtx context)