Correct small warning in the EightBit library.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-05-04 15:19:55 +01:00
parent 48c2ffa99f
commit 99a4cfaa88

View File

@ -9,6 +9,7 @@ namespace EightBit
[Flags] [Flags]
public enum Bits public enum Bits
{ {
None = 0,
Bit0 = 1, Bit0 = 1,
Bit1 = Bit0 << 1, Bit1 = Bit0 << 1,
Bit2 = Bit1 << 1, Bit2 = Bit1 << 1,