Address gdk's comments

This commit is contained in:
Thog 2019-12-08 14:22:14 +01:00
parent 340a37f4aa
commit b76684e211
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6

View file

@ -8,7 +8,7 @@ namespace Ryujinx.HLE.HOS.Services.Lm.LogService
{
public ILogger() { }
private int ReadEncodedInt(BinaryReader reader)
private static int ReadEncodedInt(BinaryReader reader)
{
int result = 0;
int position = 0;
@ -23,7 +23,7 @@ namespace Ryujinx.HLE.HOS.Services.Lm.LogService
position++;
} while ((encoded & -128) != 0);
} while ((encoded & 0x80) != 0);
return result;
}