mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-04-21 12:16:55 +00:00
A few minor consistency corrections.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
+2
-2
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user