From 6d0cf814bc0ceb07e84baf23502c8970132bf954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 7 Jan 2021 17:22:27 +0100 Subject: [PATCH] =?UTF-8?q?config:=20fix=20comment:=20-1=20is=20a=20valid?= =?UTF-8?q?=20=E2=80=98px=E2=80=99=20value?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.h b/config.h index e9bc310f..18b0e0c0 100644 --- a/config.h +++ b/config.h @@ -54,7 +54,7 @@ struct config_mouse_binding { } pipe; }; -/* If px == -1, neither px nor pt is valid. If px == 0, pt is valid, else px */ +/* If px != 0 then px is valid, otherwise pt is valid */ union pt_or_px { int16_t px; float pt;