Skip to content

Commit

Permalink
fixup-bounding-mins
Browse files Browse the repository at this point in the history
  • Loading branch information
illwieckz committed Jan 25, 2025
1 parent 127523f commit 881fb23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/shared/client/cg_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -536,9 +536,9 @@ int trap_R_BlendSkeleton( refSkeleton_t *skel, const refSkeleton_t *blend, float
for ( i = 0; i < 3; i++ )
{
bounds.maxs[ i ] = skel->bounds.maxs[ i ]
< blend->bounds.maxs[ i ]
? skel->bounds.maxs[ i ]
: blend->bounds.maxs[ i ];
< blend->bounds.mins[ i ]
? skel->bounds.mins[ i ]
: blend->bounds.mins[ i ];

bounds.maxs[ i ] = skel->bounds.maxs[ i ]
> blend->bounds.maxs[ i ]
Expand Down

0 comments on commit 881fb23

Please sign in to comment.