PacMan size is an integer

This commit is contained in:
Patricia Aas 2021-07-06 17:10:17 +02:00
parent f7b53d9fca
commit 138f2df152
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ void PacMan::updateMazePosition(std::chrono::milliseconds time_delta, const Boar
}
const double position_delta = 0.004 * time_delta.count();
const auto pacman_size = 1.0;
const auto pacman_size = 1;
auto moveToPosition = [&](Position point, Direction move_direction) {
switch (move_direction) {