From 9b77e8c62b874f343b33801ba882dc18fd56deca Mon Sep 17 00:00:00 2001 From: sup39 Date: Tue, 1 Mar 2022 19:12:17 +0900 Subject: [PATCH] hotfix draw.sun: drawRect add resetMtx=true --- stdlib-sup39/draw.sun | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stdlib-sup39/draw.sun b/stdlib-sup39/draw.sun index 93ce631..d98c429 100644 --- a/stdlib-sup39/draw.sun +++ b/stdlib-sup39/draw.sun @@ -13,7 +13,8 @@ builtin setMTX(dst, ...); var const MTX_LOADIMM = 0; var const MTX_NEW = 0; -builtin drawRect(fill, stroke, x0, y0, x1, y1); +// drawRect(fill, stroke, x0, y0, x1, y1, resetMtx=true) +builtin drawRect(fill, stroke, x0, y0, x1, y1, ...); var const FILL_NONE = 0; var const STROKE_NONE = 0;