From 943c8f44536d49a31c3df53765a0b27efce9dc43 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Thu, 7 Mar 2024 13:28:47 +0100 Subject: [PATCH] fix a regression in the display of rttaing/flipping objects while moving --- src/move.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/move.c b/src/move.c index 9d8317b1..1af049c4 100644 --- a/src/move.c +++ b/src/move.c @@ -453,8 +453,8 @@ void draw_selection(GC g, int interruptable) for(k=0;kmove_flip, - xctx->move_rot, - /* (( xctx->move_flip && (xctx->inst[n].rot & 1) ) ? xctx->move_rot+2 : xctx->move_rot) & 0x3, */ + /* xctx->move_rot, */ + (( xctx->move_flip && (xctx->inst[n].rot & 1) ) ? xctx->move_rot+2 : xctx->move_rot) & 0x3, xctx->rx1-xctx->inst[n].x0+xctx->deltax,xctx->ry1-xctx->inst[n].y0+xctx->deltay); } break;