video_core: Remove unnecessary enum class casting in logging messages
fmt now automatically prints the numeric value of an enum class member by default, so we don't need to use casts any more. Reduces the line noise in our code a bit. Co-Authored-By: LC <712067+lioncash@users.noreply.github.com>
This commit is contained in:
@@ -127,7 +127,7 @@ struct LightingRegs {
|
||||
"sampler should be one of Distribution0, Distribution1, "
|
||||
"SpotlightAttenuation, Fresnel, ReflectRed, ReflectGreen or "
|
||||
"ReflectBlue, instead got %i",
|
||||
static_cast<int>(config));
|
||||
config);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user