[Scummvm-git-logs] scummvm master -> 5be7f9b9dedde0d4ed5a903baacda393be779acd

sev- noreply at scummvm.org
Sun Feb 1 09:49:10 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
5be7f9b9de WAGE: Fix ellipses drawing in design


Commit: 5be7f9b9dedde0d4ed5a903baacda393be779acd
    https://github.com/scummvm/scummvm/commit/5be7f9b9dedde0d4ed5a903baacda393be779acd
Author: Dhruv Ranger (dhruvranger97 at gmail.com)
Date: 2026-02-01T10:49:07+01:00

Commit Message:
WAGE: Fix ellipses drawing in design

Fixes bug #16293: "object images are sometimes clipped on the right and bottom"

Changed paths:
    engines/wage/design.cpp


diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp
index 347a274f5b9..f3769a6178c 100644
--- a/engines/wage/design.cpp
+++ b/engines/wage/design.cpp
@@ -577,7 +577,7 @@ void Design::drawOval(Graphics::ManagedSurface *surface, Common::ReadStream &in,
 	}
 
 	if (fillType <= patterns.size())
-		PlotDataPrimitives().drawEllipse(x1, y1, x2-1, y2-1, kColorBlack, true, &pd);
+		PlotDataPrimitives().drawEllipse(x1, y1, x2, y2, kColorBlack, true, &pd);
 
 	pd.fillType = borderFillType;
 	pd.thickness = borderThickness;




More information about the Scummvm-git-logs mailing list