diff options
author | David Robillard <d@drobilla.net> | 2019-07-25 09:29:54 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-07-25 10:26:19 +0200 |
commit | 552e107fbe6cc470a98ccde9133e4597f83ac184 (patch) | |
tree | 2cb5999e854ac754d618dd953b7c0daab35a85d7 | |
parent | c86f7123232493f99b2a5bdf945bb33bfe3ebc5d (diff) | |
download | pugl-552e107fbe6cc470a98ccde9133e4597f83ac184.tar.gz pugl-552e107fbe6cc470a98ccde9133e4597f83ac184.tar.bz2 pugl-552e107fbe6cc470a98ccde9133e4597f83ac184.zip |
Fix type of PuglEventText::time
-rw-r--r-- | pugl/pugl.h | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |