From 552e107fbe6cc470a98ccde9133e4597f83ac184 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 25 Jul 2019 09:29:54 +0200 Subject: Fix type of PuglEventText::time --- pugl/pugl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pugl') diff --git a/pugl/pugl.h b/pugl/pugl.h index 33761f9..59d26fe 100644 --- a/pugl/pugl.h +++ b/pugl/pugl.h @@ -308,7 +308,7 @@ typedef struct { typedef struct { PuglEventType type; /**< PUGL_CHAR. */ uint32_t flags; /**< Bitwise OR of PuglEventFlag values. */ - uint32_t time; /**< Time in milliseconds. */ + double time; /**< Time in milliseconds. */ double x; /**< View-relative X coordinate. */ double y; /**< View-relative Y coordinate. */ double x_root; /**< Root-relative X coordinate. */ -- cgit v1.2.1