Add break statement in default cases
According to the contributing page (https://github.com/yuzu-emu/yuzu/wiki/Contributing) the default cases should have a break statement default: // Yes, even break for the last case break;
This commit is contained in:
parent
3161b34ff6
commit
d581a4a367
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue