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();