From: Holger Schemel Date: Sat, 11 Jan 2025 20:03:32 +0000 (+0100) Subject: removed unnecessary parentheses X-Git-Tag: 4.4.0.1~20 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=7eb8b58bac13e33fe349f852c23975a89bd8dd5c;p=rocksndiamonds.git removed unnecessary parentheses --- diff --git a/src/game_bd/bd_cave.c b/src/game_bd/bd_cave.c index 6fec4dd6..490894d8 100644 --- a/src/game_bd/bd_cave.c +++ b/src/game_bd/bd_cave.c @@ -1556,7 +1556,7 @@ void gd_drawcave_game(const GdCave *cave, } // player - if ((cave->last_direction) == GD_MV_STILL) + if (cave->last_direction == GD_MV_STILL) { // player is idle. if (player_blinking && player_tapping)