From 87002dc31a8b23a93aa1150ea0f6685472d3e919 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=B6ppe?= Date: Tue, 16 Aug 2016 22:50:14 +0100 Subject: [PATCH] [quake3/q3map2/brush.c] Fix misnamed variable --- tools/quake3/q3map2/brush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/quake3/q3map2/brush.c b/tools/quake3/q3map2/brush.c index 2afb2732..5ce42eee 100644 --- a/tools/quake3/q3map2/brush.c +++ b/tools/quake3/q3map2/brush.c @@ -251,7 +251,7 @@ void SnapWeldVector( vec3_t a, vec3_t b, vec3_t out ){ { /* round to integer */ ai = Q_rint( a[ i ] ); - bi = Q_rint( a[ i ] ); + bi = Q_rint( b[ i ] ); /* prefer exact integer */ if ( ai == a[ i ] ) {