[Scummvm-git-logs] scummvm master -> 105a94c967fa4fa66753ca6ea9997926f7f19e00
mgerhardy
noreply at scummvm.org
Thu Sep 29 07:09:24 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
105a94c967 TWINE: fixed clipping error
Commit: 105a94c967fa4fa66753ca6ea9997926f7f19e00
https://github.com/scummvm/scummvm/commit/105a94c967fa4fa66753ca6ea9997926f7f19e00
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2022-09-29T05:10:48+02:00
Commit Message:
TWINE: fixed clipping error
introduced in c39ea9499bdc600aba16f81898fc298d0eec72f6
Changed paths:
engines/twine/shared.h
diff --git a/engines/twine/shared.h b/engines/twine/shared.h
index 50eee6cf987..0ce6b3cdbe7 100644
--- a/engines/twine/shared.h
+++ b/engines/twine/shared.h
@@ -619,7 +619,7 @@ struct TwineImage {
#define VIEW_X0 (-50)
#define VIEW_Y0 (-30)
-#define VIEW_X1(engine) ((engine)->width() - 40)
+#define VIEW_X1(engine) ((engine)->width() + 40)
#define VIEW_Y1(engine) ((engine)->height() + 100)
inline int32 NormalizeAngle(int32 angle) {
More information about the Scummvm-git-logs
mailing list