Shadergen: Log unimplemented LUT select indices

This commit is contained in:
wheremyfoodat 2024-10-31 22:05:05 +02:00
parent f374b1dd51
commit 965ea6d012

View file

@ -662,7 +662,7 @@ void FragmentGenerator::compileLUTLookup(std::string& shader, const PICA::Fragme
case 4: shader += "lut_lookup_delta = dot(light_vector, lightSources[" + std ::to_string(lightID) + "].spotlightDirection);\n"; break;
default:
Helpers::warn("Shadergen: Unimplemented LUT select");
Helpers::warn("Shadergen: Unimplemented LUT select %d", inputID);
shader += "lut_lookup_delta = 1.0;\n";
break;
}