Skip to content

Commit 881fb23

Browse files
committed
fixup-bounding-mins
1 parent 127523f commit 881fb23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/shared/client/cg_api.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -536,9 +536,9 @@ int trap_R_BlendSkeleton( refSkeleton_t *skel, const refSkeleton_t *blend, float
536536
for ( i = 0; i < 3; i++ )
537537
{
538538
bounds.maxs[ i ] = skel->bounds.maxs[ i ]
539-
< blend->bounds.maxs[ i ]
540-
? skel->bounds.maxs[ i ]
541-
: blend->bounds.maxs[ i ];
539+
< blend->bounds.mins[ i ]
540+
? skel->bounds.mins[ i ]
541+
: blend->bounds.mins[ i ];
542542

543543
bounds.maxs[ i ] = skel->bounds.maxs[ i ]
544544
> blend->bounds.maxs[ i ]

0 commit comments

Comments
 (0)