mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-04-26 17:17:49 +00:00
Work my way through a bunch of the analysis suggestions.
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
This commit is contained in:
+1
-1
@@ -30,7 +30,7 @@ namespace EightBit
|
||||
|
||||
public static byte HighByte(ushort value) => HighByte((int)value);
|
||||
|
||||
public static byte LowByte(int value) => (byte)(value & (int)Mask.Mask8);
|
||||
public static byte LowByte(int value) => (byte)(value & (int)Mask.Eight);
|
||||
|
||||
public static byte LowByte(ushort value) => LowByte((int)value);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user