diff --git a/src/main.rs b/src/main.rs index 6597ff5..92cdff9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -50,14 +50,14 @@ impl Position for Point { impl IsBlank for Point { fn is_blank(&self) -> bool { - self.color == 0xffffff + self.color == 0 } } impl Blanked for Point { fn blanked(&self) -> Self { Self { - color: 0xffffff, + color: 0, ..*self } }