From 9020b1292cf975da50aa62c9b67804b874fa9f51 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 9 Oct 2020 21:50:35 +0200 Subject: [PATCH] fix GridOffset type --- client/src/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/ui.c b/client/src/ui.c index 804dafd65..6e8c73c27 100644 --- a/client/src/ui.c +++ b/client/src/ui.c @@ -43,7 +43,7 @@ double PlotGridX = 0, PlotGridY = 0, PlotGridXdefault = 64, PlotGridYdefault = 6 uint32_t CursorCPos = 0, CursorDPos = 0; double GraphPixelsPerPoint = 1.f; // How many visual pixels are between each sample point (x axis) static bool flushAfterWrite = 0; -int GridOffset = 0; +double GridOffset = 0; bool GridLocked = false; bool showDemod = true;