A few minor consistency corrections.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-03 20:49:07 +00:00
parent d4a35c402c
commit c4e613065b
3 changed files with 7 additions and 11 deletions
+2 -2
View File
@@ -11,9 +11,9 @@
public Rom() : this(0) { }
public override int Size { get { return bytes.Length; } }
public override int Size => bytes.Length;
protected ref byte[] Bytes() { return ref bytes; }
protected ref byte[] Bytes() => ref bytes;
static public int Load(FileStream file, ref byte[] output, int writeOffset = 0, int readOffset = 0, int limit = -1, int maximumSize = -1)
{