Refining fix

This commit is contained in:
CamilleLaVey
2026-08-28 14:28:09 -04:00
committed by crueter
parent 3e61e6da87
commit 75519010d2
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -369,7 +369,7 @@ void TranslateResolutionInfo(ResolutionSetup setup, ResolutionScalingInfo& info)
}
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;
info.active = true;
info.active = info.up_scale != 1 || info.down_shift != 0;
}
void UpdateRescalingInfo() {