Merge pull request #9217 from HidroSaphire/patch-1

Add break statement in default cases
This commit is contained in:
Mai 2022-11-11 00:42:04 +00:00 committed by GitHub
commit 0e84fd95e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -151,6 +151,7 @@ void UpdateRescalingInfo() {
ASSERT(false);
info.up_scale = 1;
info.down_shift = 0;
break;
}
info.up_factor = static_cast<f32>(info.up_scale) / (1U << info.down_shift);
info.down_factor = static_cast<f32>(1U << info.down_shift) / info.up_scale;