Print the hex representation of the sun color, too (might be useful for user's reference)

This commit is contained in:
nashmuhandes 2022-07-01 14:46:02 +08:00
parent e2ff176e3a
commit 496b1cb783

View file

@ -77,7 +77,7 @@ void FLevel::SetupLights()
if (!stricmp(key.key, "lm_suncolor"))
{
lightcolor = atoi(key.value);
printf("Sun color: %d\n", lightcolor);
printf("Sun color: %d (%X)\n", lightcolor, lightcolor);
}
else if (!stricmp(key.key, "lm_sampledistance"))
{