[Scummvm-git-logs] scummvm master -> fb9e22daf1713ee8d0e1d0525ea88a3e26e92c63

neuromancer noreply at scummvm.org
Sat Jan 1 18:06:37 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:
fb9e22daf1 PRIVATE: fixed indentation of previous commit


Commit: fb9e22daf1713ee8d0e1d0525ea88a3e26e92c63
    https://github.com/scummvm/scummvm/commit/fb9e22daf1713ee8d0e1d0525ea88a3e26e92c63
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2022-01-01T19:04:05+01:00

Commit Message:
PRIVATE: fixed indentation of previous commit

Changed paths:
    engines/private/private.cpp


diff --git a/engines/private/private.cpp b/engines/private/private.cpp
index a8afc9ec48a..325c941a4eb 100644
--- a/engines/private/private.cpp
+++ b/engines/private/private.cpp
@@ -1386,8 +1386,8 @@ void PrivateEngine::drawScreen() {
 
 		byte newPalette[768];
 		for (int c = 0; c < 256; c++) { // This avoids any endianness issues
-				uint32 y = READ_UINT32(&cPalette[c * 4]) & 0x00FFFFFF;
-				WRITE_LE_UINT24(&newPalette[c * 3], y);
+			uint32 y = READ_UINT32(&cPalette[c * 4]) & 0x00FFFFFF;
+			WRITE_LE_UINT24(&newPalette[c * 3], y);
 		}
 
 		g_system->getPaletteManager()->setPalette(newPalette, 0, 256);




More information about the Scummvm-git-logs mailing list