shithub: nanobsp

Download patch

ref: f43f12363861625ef9c454a90e5c9fd7a0af9781
parent: 9322adf2b212245e8f742b1fbbd4ea2c87f58364
author: Andrew Apted <ajapted@gmail.com>
date: Fri Dec 15 11:37:15 EST 2023

a few minor tweaks.

--- a/nano_bsp.c
+++ b/nano_bsp.c
@@ -56,7 +56,6 @@
 #define MIN(a, b)  ((a) < (b) ? (a) : (b))
 
 
-
 typedef struct Nanode  nanode_t;
 
 struct Nanode
@@ -797,8 +796,8 @@
 
 	nano_seg_index = 0;
 
-	fixed_t bbox[4];
+	fixed_t dummy[4];
 
 	// this also frees stuff as it goes
-	BSP_WriteNode (root, bbox);
+	BSP_WriteNode (root, dummy);
 }
--