pica.h: IsLightingSamplerSupported: make 'false' more explicitely the default case

This commit is contained in:
Paul "Dettorer" Hervot 2016-03-13 19:48:06 -07:00
parent 3ae3b44d71
commit 6f684dc2b3

View File

@ -737,8 +737,10 @@ struct Regs {
case LightingSampler::ReflectGreen:
case LightingSampler::ReflectBlue:
return (config == LightingConfig::Config4) || (config == LightingConfig::Config5) || (config == LightingConfig::Config7);
default:
return false;
}
return false;
}
struct {