[Scummvm-git-logs] scummvm branch-2-9 -> 5bf676b212502332fad49f08cf4456025f4e6d3b

sev- noreply at scummvm.org
Sun Nov 24 23:28:03 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:
95979a45dd SWORD25: Fix color picking from lightmaps. Fixes bug #13504
5bf676b212 NEWS: Mention Sword25 improvements


Commit: 95979a45ddc4fbd00213946afdfd83165747c7e2
    https://github.com/scummvm/scummvm/commit/95979a45ddc4fbd00213946afdfd83165747c7e2
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-11-25T00:27:49+01:00

Commit Message:
SWORD25: Fix color picking from lightmaps. Fixes bug #13504

Changed paths:
    engines/sword25/gfx/image/swimage.cpp


diff --git a/engines/sword25/gfx/image/swimage.cpp b/engines/sword25/gfx/image/swimage.cpp
index 87e905af5d3..aef97a7c32b 100644
--- a/engines/sword25/gfx/image/swimage.cpp
+++ b/engines/sword25/gfx/image/swimage.cpp
@@ -92,7 +92,7 @@ uint SWImage::getPixel(int x, int y) {
 	assert(y >= 0 && y < _image.h);
 
 	byte a, r, g, b;
-	_image.format.colorToARGB(_image.getPixel(0, 0), a, r, g, b);
+	_image.format.colorToARGB(_image.getPixel(x, y), a, r, g, b);
 
 	return BS_ARGB(a, r, g, b);
 }


Commit: 5bf676b212502332fad49f08cf4456025f4e6d3b
    https://github.com/scummvm/scummvm/commit/5bf676b212502332fad49f08cf4456025f4e6d3b
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-11-25T00:27:57+01:00

Commit Message:
NEWS: Mention Sword25 improvements

Changed paths:
    NEWS.md


diff --git a/NEWS.md b/NEWS.md
index 9fe351f7744..4e7f61ce90e 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -200,6 +200,10 @@ For a more comprehensive changelog of the latest experimental code, see:
    - Added more game variants.
    - Restored the ability to choose language of subtitles on PC versions.
 
+ Sword25:
+   - Fixed looping scene background sounds.
+   - Fixed actor lighting when walking.
+
  Teenagent:
    - Added support for Polish floppy version.
 




More information about the Scummvm-git-logs mailing list