[Scummvm-git-logs] scummvm master -> 4ee354545bf37b66e2d0b68951c387941cb112ea
rvanlaar
roland at rolandvanlaar.nl
Sat Mar 28 12:10:25 UTC 2020
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:
4ee354545b DIRECTOR: Grammer fix in transformColor's comment.
Commit: 4ee354545bf37b66e2d0b68951c387941cb112ea
https://github.com/scummvm/scummvm/commit/4ee354545bf37b66e2d0b68951c387941cb112ea
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2020-03-28T13:09:11+01:00
Commit Message:
DIRECTOR: Grammer fix in transformColor's comment.
Changed paths:
engines/director/graphics.cpp
diff --git a/engines/director/graphics.cpp b/engines/director/graphics.cpp
index 6f58512d34..93804d3645 100644
--- a/engines/director/graphics.cpp
+++ b/engines/director/graphics.cpp
@@ -739,9 +739,9 @@ static const byte mouseDown[] = {
/**
* The sprites colors are in reverse order with respect to the ids in director.
- * To make loading images easier we the palette is in reverse order.
+ * The palette is in reverse order, this eases the code for loading files.
* All other color ids can be converted with: 255 - colorId.
- */
+ **/
uint32 DirectorEngine::transformColor(uint32 color) {
return 255 - color;
}
More information about the Scummvm-git-logs
mailing list