Update IPrepoService.cs

This commit is contained in:
jduncanator 2019-11-25 10:43:39 +11:00 committed by GitHub
parent 5f045a9c97
commit b4881f0f42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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++)