summaryrefslogtreecommitdiff
path: root/src/drops.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2023-12-27 20:28:55 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2023-12-27 20:28:55 +0100
commitc6e7e4b1b1b72e0b67a64332033e3f41f2407f09 (patch)
treec56cb1e2ea83634ecb88e77b3e31c00051786062 /src/drops.c
parent07a966e476052a6ffb00333800be62b0178d018d (diff)
depth
Diffstat (limited to 'src/drops.c')
-rw-r--r--src/drops.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/drops.c b/src/drops.c
index b97b8be..5bc7cef 100644
--- a/src/drops.c
+++ b/src/drops.c
@@ -44,8 +44,6 @@ void draw_drops(platform_window* window) {
for (int i = 0; i < MAX_DROPS; i++) {
drop b = drops[i];
if (!b.active) continue;
-
- DROP_RENDER_DEPTH((int)(b.position.y));
int alpha = 255;
if (b.time_active >= DROP_MAX_DURATION - DROP_FADE_TIME) {