From 262ac5dcc54a322c8c1b69b8f8ac4d4e4228bb66 Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Fri, 10 Sep 2021 15:49:33 +0200 Subject: [PATCH] No shouty --- lib/Inky.cpp | 2 +- lib/Pinky.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Inky.cpp b/lib/Inky.cpp index 6e568c9..c50d456 100644 --- a/lib/Inky.cpp +++ b/lib/Inky.cpp @@ -43,7 +43,7 @@ Position Inky::target(const GameState & gameState) const { targetPosition.y += 2; break; case Direction::NONE: - assert(false && "Pacman should be moving!"); + assert(false && "Pacman should be moving"); break; } diff --git a/lib/Pinky.cpp b/lib/Pinky.cpp index 0c06605..8a0dc4a 100644 --- a/lib/Pinky.cpp +++ b/lib/Pinky.cpp @@ -43,7 +43,7 @@ Position Pinky::target(const GameState & gameState) const { targetPosition.y += 4; break; case Direction::NONE: - assert(false && "Pacman should be moving!"); + assert(false && "Pacman should be moving"); break; } return gridPositionToPosition(targetPosition);