diff options
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r-- | pugl/pugl_x11.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index c180a9a..08bfc40 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -75,8 +75,9 @@ puglCreate(PuglNativeWindow parent, PuglPlatformData* impl = view->impl; - view->width = width; - view->height = height; + view->width = width; + view->height = height; + impl->display = XOpenDisplay(0); impl->screen = DefaultScreen(impl->display); |