diff --git a/plot.c b/plot.c index 1a8ef2b..045fcff 100644 --- a/plot.c +++ b/plot.c @@ -1838,6 +1838,15 @@ static void cell_draw_marker_info(int x0, int y0) cell_drawstring_7x13(buf, xpos, ypos); break; } + if (i >= 2 && in_selftest) { + plot_printf(buf, sizeof buf, "DO NOT SWITCH OFF!!"); + j = 2; + int xpos = 1 + (j%2)*(WIDTH/2) + CELLOFFSETX - x0; + int ypos = 1 + (j/2)*(16) - y0; + + cell_drawstring_7x13(buf, xpos, ypos); + break; + } if (!markers[i].enabled) continue; int idx = markers[i].index; diff --git a/sa_core.c b/sa_core.c index fe1942c..5c5fde2 100644 --- a/sa_core.c +++ b/sa_core.c @@ -1100,7 +1100,7 @@ void cell_draw_test_info(int x0, int y0) do { i++; int xpos = 25 - x0; - int ypos = 40+i*INFO_SPACING - y0; + int ypos = 50+i*INFO_SPACING - y0; unsigned int color = RGBHEX(0xFFFFFF); if (i == -1) { plot_printf(self_test_status_buf, sizeof self_test_status_buf, "Self test status:");