Skip to content

Commit

Permalink
AppVeyor fixes for input_float3 and input_float4
Browse files Browse the repository at this point in the history
  • Loading branch information
supudo authored and swistakm committed Mar 16, 2017
1 parent 53b3225 commit ff4b918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imgui/core.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -3566,7 +3566,7 @@ def input_float3(
ImGuiInputTextFlags extra_flags = 0
)
"""
cdef float[3] inout_values = [value0, value1, values2]
cdef float[3] inout_values = [value0, value1, value2]

return cimgui.InputFloat3(
_bytes(label), <float*>&inout_values,
Expand Down Expand Up @@ -3611,7 +3611,7 @@ def input_float4(
ImGuiInputTextFlags extra_flags = 0
)
"""
cdef float[4] inout_values = [value0, value1, values2, value3]
cdef float[4] inout_values = [value0, value1, value2, value3]

return cimgui.InputFloat4(
_bytes(label), <float*>&inout_values,
Expand Down

0 comments on commit ff4b918

Please sign in to comment.