Fix TU19 Lighting Optimisation

This commit is contained in:
GabsPuNs
2026-05-17 01:16:07 -04:00
parent ea410d5da5
commit 9d4f9ab039
10 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ void Minimap::reloadColours()
int b = ((color) & 0xff) * br / 255;
// 4J - changed BYTE order to save having to reorder later
#if ( defined _DURANGO || defined _WIN64 || __PSVITA__ )
#if ( defined _DURANGO || defined _WINDOWS64 || __PSVITA__ )
LUT[i] = 255 << 24 | b << 16 | g << 8 | r;
#elif defined _XBOX
LUT[i] = 255 << 24 | r << 16 | g << 8 | b;