docs/sphinx: Fix vec3_set

vec4_set was the equivalent to vec2_set.

Closes jp9000/obs-studio#1115
This commit is contained in:
SuslikV 2017-12-15 08:12:59 +02:00 committed by jp9000
parent 8395cfcbce
commit 2741337755

View File

@ -39,14 +39,14 @@
---------------------
.. function:: void vec4_set(struct vec4 *dst, float x, float y)
.. function:: void vec4_set(struct vec4 *dst, float x, float y, float z, float w)
Sets the individual components of a 4-component vector.
:param dst: Destination
:param x: X component
:param y: Y component
:param y: Z component
:param z: Z component
:param w: W component
---------------------