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,9 +737,11 @@ struct Regs {
case LightingSampler::ReflectGreen: case LightingSampler::ReflectGreen:
case LightingSampler::ReflectBlue: case LightingSampler::ReflectBlue:
return (config == LightingConfig::Config4) || (config == LightingConfig::Config5) || (config == LightingConfig::Config7); return (config == LightingConfig::Config4) || (config == LightingConfig::Config5) || (config == LightingConfig::Config7);
}
default:
return false; return false;
} }
}
struct { struct {
struct LightSrc { struct LightSrc {