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() { }
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue