[Scummvm-git-logs] scummvm master -> b3c138a199f6c99fda94eb2140b4fd537fa00f00
bluegr
noreply at scummvm.org
Fri Jul 26 21:40:22 UTC 2024
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
e36fe3f815 JANITORIAL: Fix indexes typo in animation.cpp
b3c138a199 JANITORIAL: Fix neglibable typo in graphics.cpp
Commit: e36fe3f815ef93337941d9d2f13dff894b191ae1
https://github.com/scummvm/scummvm/commit/e36fe3f815ef93337941d9d2f13dff894b191ae1
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2024-07-27T00:40:18+03:00
Commit Message:
JANITORIAL: Fix indexes typo in animation.cpp
Changed paths:
engines/avalanche/animation.cpp
diff --git a/engines/avalanche/animation.cpp b/engines/avalanche/animation.cpp
index a3c5b05d2fa..df3a7c9e4d0 100644
--- a/engines/avalanche/animation.cpp
+++ b/engines/avalanche/animation.cpp
@@ -232,7 +232,7 @@ void AnimationType::walk() {
}
byte magicColor = _anim->checkFeet(_x, _x + _xLength, _oldY[_anim->_vm->_cp], _y, _yLength) - 1;
- // -1 is because the modified array indexes of magics[] compared to Pascal .
+ // -1 is because the modified array indices of magics[] compared to Pascal.
if ((magicColor != 255) & !_anim->_vm->_doingSpriteRun) {
MagicType *magic = &_anim->_vm->_magics[magicColor];
Commit: b3c138a199f6c99fda94eb2140b4fd537fa00f00
https://github.com/scummvm/scummvm/commit/b3c138a199f6c99fda94eb2140b4fd537fa00f00
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2024-07-27T00:40:18+03:00
Commit Message:
JANITORIAL: Fix neglibable typo in graphics.cpp
Changed paths:
engines/avalanche/graphics.cpp
diff --git a/engines/avalanche/graphics.cpp b/engines/avalanche/graphics.cpp
index 96b56298c23..68c46d12c9b 100644
--- a/engines/avalanche/graphics.cpp
+++ b/engines/avalanche/graphics.cpp
@@ -208,7 +208,7 @@ Common::Point GraphicManager::drawArc(Graphics::Surface &surface, int16 x, int16
if (yRadius == 0)
yRadius++;
- // Check for an ellipse with negligable x and y radius.
+ // Check for an ellipse with negligible x and y radius.
if ((xRadius <= 1) && (yRadius <= 1)) {
*(byte *)_scrolls.getBasePtr(x, y) = color;
endPoint.x = x;
More information about the Scummvm-git-logs
mailing list