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
1 changed files with 1 additions and 0 deletions

View File

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