diff options
Diffstat (limited to 'data/client.cpp')
| -rw-r--r-- | data/client.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/data/client.cpp b/data/client.cpp index 65494b0..730ea7a 100644 --- a/data/client.cpp +++ b/data/client.cpp @@ -57,8 +57,7 @@ ImPlotStyle *g_implot_style; // Data globals const char *g_x_axes[] = { - "rowid", - "steps", + "step", #define FOR_CORE(i) "cycl_" #i, FOR_CORES #undef FOR_CORE @@ -272,7 +271,7 @@ void gui_print_data_col(void) { if (ImGui::InputInt("nth", &g_nth, 0, 0, ImGuiInputTextFlags_CharsDecimal)) data_touched(); if (ImGui::BeginCombo("x-axis", g_x_axes[g_x_axis])) { - for (int i = 0; i < CORES + 2; i++) { + for (int i = 0; i < CORES + 1; i++) { if (ImGui::Selectable(g_x_axes[i], g_x_axis == i)) { g_x_axis = i; data_touched(); |
