diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-26 10:34:26 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-26 10:34:26 -0400 |
commit | 038dfdbc853a8cfddb55a1c200373d41bd204867 (patch) | |
tree | aa0f55acf7d120e9be4fbb7c24b99d6d45c128ef /backend/drm | |
parent | 82322d81a7cb685ed8ddbb23507129724ebf3c58 (diff) |
Log max cursor size on error
Diffstat (limited to 'backend/drm')
-rw-r--r-- | backend/drm/drm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c index d5779c2c..618274a6 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -313,7 +313,7 @@ static bool wlr_drm_output_set_cursor(struct wlr_output_state *output, bo_height = ret ? 64 : bo_height; if (width > bo_width || height > bo_width) { - wlr_log(L_INFO, "Cursor too large"); + wlr_log(L_INFO, "Cursor too large (max %dx%d)", (int)bo_width, (int)bo_height); return false; } |