mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fix a c&p error in a doc comment.
This commit is contained in:
parent
b37b0180cb
commit
89daf15215
1 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ vrect_t *VRect_Intersect (const vrect_t *r1, const vrect_t *r2);
|
|||
vrect_t *VRect_HSplit (const vrect_t *r, int y);
|
||||
|
||||
/** Return two rectangles representing the portions of \a r to the left and
|
||||
right of \a y.
|
||||
right of \a x.
|
||||
|
||||
One of the returned rectangles may be empty. Use VRect_IsEmpty to check.
|
||||
The first rectangle represents the portion of \a r that is to the left of
|
||||
|
@ -111,7 +111,7 @@ vrect_t *VRect_HSplit (const vrect_t *r, int y);
|
|||
\param r The rectangle to split.
|
||||
\param x The vertical line by which \a r will be split.
|
||||
\return The two linked rectangles representing the portions to the
|
||||
left and right of \a y. The returned pointer points to the
|
||||
left and right of \a x. The returned pointer points to the
|
||||
first (left) rectangle, which links to the second (right)
|
||||
rectangle.
|
||||
\note It is the caller's responsibility to delete the returned
|
||||
|
|
Loading…
Reference in a new issue