From 26e312ac1083987d42cf028ea511b8703c984a7a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 15 Feb 2019 23:09:26 +0100 Subject: Fix implicit double to int casts --- pugl/pugl_internal.h | 4 ++-- pugl/pugl_x11.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'pugl') diff --git a/pugl/pugl_internal.h b/pugl/pugl_internal.h index ce79d2a..2b09761 100644 --- a/pugl/pugl_internal.h +++ b/pugl/pugl_internal.h @@ -196,8 +196,8 @@ puglDispatchEvent(PuglView* view, const PuglEvent* event) case PUGL_NOTHING: break; case PUGL_CONFIGURE: - view->width = event->configure.width; - view->height = event->configure.height; + view->width = (int)event->configure.width; + view->height = (int)event->configure.height; puglEnterContext(view); view->eventFunc(view, event); puglLeaveContext(view, false); diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index 3a8cead..2755aa0 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -493,8 +493,8 @@ puglProcessEvents(PuglView* view) if (config_event.type) { // Resize drawing context before dispatching view->impl->ctx.resize(view, - config_event.configure.width, - config_event.configure.height); + (int)config_event.configure.width, + (int)config_event.configure.height); puglDispatchEvent(view, (const PuglEvent*)&config_event); } -- cgit v1.2.1