From c3443568cb48532c13cad986eee460c0357cfd21 Mon Sep 17 00:00:00 2001 From: Valentin Lemiere Date: Sat, 7 Dec 2013 15:40:22 +0100 Subject: [PATCH] Stage resize fix --- project/src/common/ExternalInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/common/ExternalInterface.cpp b/project/src/common/ExternalInterface.cpp index f7070e161..2bc323f3f 100644 --- a/project/src/common/ExternalInterface.cpp +++ b/project/src/common/ExternalInterface.cpp @@ -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();