commit a298fa3

Devine Lu Linvega  ·  2026-04-23 21:59:30 +0000 UTC
parent 9b4b473
Fixed drawing distance
1 files changed,  +2, -2
+2, -2
 1@@ -479,8 +479,8 @@ screen_deo_pixel(void)
 2 			*dst = (*dst & mask) | color;
 3 			screen_reqdraw = 1;
 4 		}
 5-		if(rMX) rX += ctrl & 0x10 ? -rDX : rDX;
 6-		if(rMY) rY += ctrl & 0x20 ? -rDY : rDY;
 7+		if(rMX) rX += ctrl & 0x10 ? -1 : 1;
 8+		if(rMY) rY += ctrl & 0x20 ? -1 : 1;
 9 	}
10 }
11