From 997bf15584b708a2e5df200587691c9d191806e3 Mon Sep 17 00:00:00 2001 From: Evan Pezent Date: Tue, 5 May 2020 14:40:04 -0500 Subject: [PATCH] Update implot.h --- implot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implot.h b/implot.h index 778e8ad..0ffbeb7 100644 --- a/implot.h +++ b/implot.h @@ -176,7 +176,7 @@ void PlotPieChart(const char** label_ids, float* values, int count, const ImVec2 // Plots a text label at point x,y. void PlotLabel(const char* text, float x, float y, bool vertical = false, const ImVec2& pixel_offset = ImVec2(0,0)); // Plots digital channels. -void PlotDigital(const char* label_id, const float* xs, const float* ys, int count, int offset = 0, int stride = sizeof(float) + sizeof(bool)); +void PlotDigital(const char* label_id, const float* xs, const float* ys, int count, int offset = 0, int stride = sizeof(float)); void PlotDigital(const char* label_id, ImVec2 (*getter)(void* data, int idx), void* data, int count, int offset = 0); //-----------------------------------------------------------------------------