Address gdk's comments

This commit is contained in:
Thog 2019-12-08 14:22:14 +01:00
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() { } public ILogger() { }
private int ReadEncodedInt(BinaryReader reader) private static int ReadEncodedInt(BinaryReader reader)
{ {
int result = 0; int result = 0;
int position = 0; int position = 0;
@ -23,7 +23,7 @@ namespace Ryujinx.HLE.HOS.Services.Lm.LogService
position++; position++;
} while ((encoded & -128) != 0); } while ((encoded & 0x80) != 0);
return result; return result;
} }