Address gdk's comments
This commit is contained in:
parent
340a37f4aa
commit
b76684e211
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue