diff options
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/pugl_internal.h | 4 | ||||
-rw-r--r-- | pugl/pugl_x11.c | 4 |
2 files changed, 4 insertions, 4 deletions
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); } |