From 721986fea456997a5fc7d26f3fc6bb893b6d191c Mon Sep 17 00:00:00 2001 From: Tom Black Date: Mon, 18 Jul 2016 00:35:51 -0500 Subject: Clean up window attributes --- ext/ruby2d/ruby2d.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ext') diff --git a/ext/ruby2d/ruby2d.c b/ext/ruby2d/ruby2d.c index 52b852a..300198d 100644 --- a/ext/ruby2d/ruby2d.c +++ b/ext/ruby2d/ruby2d.c @@ -257,6 +257,7 @@ static void render() { static VALUE ruby2d_show(VALUE s) { self = s; + // Get window attributes char *title = RSTRING_PTR(rb_iv_get(self, "@title")); int width = NUM2INT(rb_iv_get(self, "@width")); int height = NUM2INT(rb_iv_get(self, "@height")); @@ -298,11 +299,11 @@ static VALUE ruby2d_show(VALUE s) { title, width, height, update, render, flags ); - window->on_key = on_key; - window->on_key_down = on_key_down; - window->on_controller = on_controller; window->viewport.width = viewport_width; window->viewport.height = viewport_height; + window->on_key = on_key; + window->on_key_down = on_key_down; + window->on_controller = on_controller; S2D_Show(window); -- cgit v1.2.3