You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parameter in declaration v[3] should be v[4], obviously (functionality is fine since the array size is basically just a comment, but users might declare v without enough storage space and end up stomping memory).
The text was updated successfully, but these errors were encountered:
Function is declared as (imgui.h, 211):
bool SliderFloat4(const char* label, float v[3], float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f);
but defined as (imgui.cpp, 3469):
bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* display_format, float power) {
Parameter in declaration v[3] should be v[4], obviously (functionality is fine since the array size is basically just a comment, but users might declare v without enough storage space and end up stomping memory).
The text was updated successfully, but these errors were encountered: