Changed to signed

This commit is contained in:
Scott Anderson 2017-05-14 01:26:43 +12:00
parent eac603bfdf
commit 409065ba2e
2 changed files with 5 additions and 5 deletions

View file

@ -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
uint32_t width, height;
uint32_t refresh; // mHz
int32_t width, height;
int32_t refresh; // mHz
};
struct wlr_output_impl;