From: Holger Schemel Date: Thu, 12 Sep 2024 21:59:50 +0000 (+0200) Subject: removed unneeded function call X-Git-Tag: 4.4.0.0-test-4~257 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=acbb77311449d64d07724976965d3ad066a9d575;p=rocksndiamonds.git removed unneeded function call --- diff --git a/src/game_bd/bd_caveengine.c b/src/game_bd/bd_caveengine.c index bdb89a16..71d122b8 100644 --- a/src/game_bd/bd_caveengine.c +++ b/src/game_bd/bd_caveengine.c @@ -693,7 +693,7 @@ static inline void store_dir(GdCave *cave, const int x, const int y, const GdDirection dir, const GdElement element) { store_dir_buffer(cave, x, y, dir); - store(cave, x + gd_dx[dir], y + gd_dy[dir], scanned_pair(element)); + store(cave, x + gd_dx[dir], y + gd_dy[dir], element); } // Store an element to (x, y) + dir.