Stage resize fix

This commit is contained in:
Valentin Lemiere
2013-12-07 15:40:22 +01:00
parent cd2c48a6f4
commit c3443568cb

View File

@@ -1224,7 +1224,7 @@ value lime_stage_resize_window(value inStage, value inWidth, value inHeight)
Stage *stage;
if (AbstractToObject(inStage,stage))
{
stage->ResizeWindow(val_int(inHeight), val_int(inWidth));
stage->ResizeWindow(val_int(inWidth), val_int(inHeight));
}
#endif
return alloc_null();