Fix some indentation

This commit is contained in:
Alex Barney 2019-06-18 00:11:09 -05:00
parent 2f6e982d4d
commit 6e29353e23
3 changed files with 3 additions and 3 deletions

View file

@ -74,7 +74,7 @@ namespace ChocolArm64.Translation
public bool Rejit()
{
if (!_rejit)
if (!_rejit)
{
return false;
}

View file

@ -53,7 +53,7 @@ namespace Ryujinx.HLE.HOS
offset += _positionOffset;
}
return _baseStream.Seek(offset, origin);
return _baseStream.Seek(offset, origin);
}
public override void SetLength(long value)

View file

@ -23,7 +23,7 @@ namespace Ryujinx.Tests.Unicorn.Native
IntPtr item = new IntPtr(input.ToInt64() + i * size);
output[i] = Marshal.PtrToStructure<T>(item);
}
}
}
[DllImport("unicorn", CallingConvention = CallingConvention.Cdecl)]
public static extern uint uc_version(out uint major, out uint minor);