mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
[quake3/q3map2/brush.c] Fix misnamed variable
This commit is contained in:
parent
d1109f70e5
commit
87002dc31a
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ void SnapWeldVector( vec3_t a, vec3_t b, vec3_t out ){
|
||||||
{
|
{
|
||||||
/* round to integer */
|
/* round to integer */
|
||||||
ai = Q_rint( a[ i ] );
|
ai = Q_rint( a[ i ] );
|
||||||
bi = Q_rint( a[ i ] );
|
bi = Q_rint( b[ i ] );
|
||||||
|
|
||||||
/* prefer exact integer */
|
/* prefer exact integer */
|
||||||
if ( ai == a[ i ] ) {
|
if ( ai == a[ i ] ) {
|
||||||
|
|
Loading…
Reference in a new issue