aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-05-13 22:27:25 +1200
committerScott Anderson <ascent12@hotmail.com>2017-05-13 22:27:25 +1200
commit3000b8615fd4ba62b1a0f804caf0b150d5edf22c (patch)
treec71fb93e76e6ce71ceee26b9837a210b3bf46cb0 /include
parentc436e76240ab190a07afcd961ca2dd279af72968 (diff)
More accurate refresh rates (mHz)
Diffstat (limited to 'include')
-rw-r--r--include/wlr/wayland.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/wayland.h b/include/wlr/wayland.h
index 158acc33..de3f5f10 100644
--- a/include/wlr/wayland.h
+++ b/include/wlr/wayland.h
@@ -10,8 +10,8 @@ struct wlr_output_mode_state;
struct wlr_output_mode {
struct wlr_output_mode_state *state;
uint32_t flags; // enum wl_output_mode
- int32_t width, height;
- int32_t refresh; // mHz
+ uint32_t width, height;
+ uint32_t refresh; // mHz
};
struct wlr_output_impl;