commit bb636551437146b801d9c5aa4e71a699975ebefe
parent 45ab7ef1de265bf536e83a766326a998c73a80d9
Author: Olav Sørensen <olav.sorensen@live.no>
Date: Sat, 7 Oct 2023 15:11:31 +0200
ALT+F3 was also broken
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ft2_edit.c b/src/ft2_edit.c
@@ -1519,7 +1519,7 @@ void cutBlock(void)
if (p != NULL && markY1 >= 0 && markX1 >= 0 && markX2 >= 0 && markY2 >= 0)
{
pauseMusic();
- for (int32_t x = markX1; x < markX2; x++)
+ for (int32_t x = markX1; x <= markX2; x++)
{
for (int32_t y = markY1; y < markY2; y++)
{