From b4881f0f425094151424660f0fd0d47b1c6c6977 Mon Sep 17 00:00:00 2001 From: jduncanator <1518948+jduncanator@users.noreply.github.com> Date: Mon, 25 Nov 2019 10:43:39 +1100 Subject: [PATCH] Update IPrepoService.cs --- Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs b/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs index 3d77dbfaef..fdd156d309 100644 --- a/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs +++ b/Ryujinx.HLE/HOS/Services/Prepo/IPrepoService.cs @@ -140,7 +140,7 @@ namespace Ryujinx.HLE.HOS.Services.Prepo else if (descriptor > 0xA0 && descriptor < 0xD0) // String value, max size = 0x20 bytes ? { int size = descriptor - 0xA0; - string value = ""; + string value = string.Empty; byte[] rawValues = new byte[0]; for (int i = 0; i < size; i++)