Check in windows

This commit is contained in:
2019-11-06 14:03:47 -07:00
parent b85ed10846
commit 9b0d86a995
14 changed files with 41 additions and 20 deletions

View File

@@ -26,7 +26,7 @@ class PatternBlinker : public Pattern
};
[[nodiscard]] bool getCell(std::uint8_t x, std::uint8_t y) const override
{
return cells[x][y];
return cells[y][x];
};
};