ref: 60547f9f3dcde15d2a1ea593007ac4ff733ef15c
parent: bea3641edebbcafe97ab6aed4e40b057a922d99d
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Wed Feb 19 13:19:19 EST 2025
D_SpriteDrawSpans: span's v is still sometimes negative, workaround for now
--- a/d_sprite.c
+++ b/d_sprite.c
@@ -32,7 +32,9 @@
// we count on FP exceptions being turned off to avoid range problems
izistep = (int)(tv->z.stepu * 0x8000 * 0x10000);
- assert(pspan->v >= 0);
+ // FIXME(sigrid): still happens sometimes for some reason
+ if(pspan->v < 0)
+ return;
do
{