From: Thomas Köppe Date: Tue, 16 Aug 2016 21:50:14 +0000 (+0100) Subject: [quake3/q3map2/brush.c] Fix misnamed variable X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fed7a21e608f1842ccd6381885c5a473a32165f2;p=xonotic%2Fnetradiant.git [quake3/q3map2/brush.c] Fix misnamed variable --- diff --git a/tools/quake3/q3map2/brush.c b/tools/quake3/q3map2/brush.c index 7114ed17..4e3a37a0 100644 --- a/tools/quake3/q3map2/brush.c +++ b/tools/quake3/q3map2/brush.c @@ -256,7 +256,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 ] ) {