Fix color bug

This commit is contained in:
2022-02-22 21:46:26 -06:00
parent ef6d87f617
commit 9ea478d6f4
7 changed files with 442 additions and 256 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ impl TryFrom<u8> for Opcode {
40 => Popr,
41 => Peekr,
42 => Debug,
other => return Err(InvalidOpcode(other))
other => return Err(InvalidOpcode(other)),
})
}
}