diff options
author | Matías Locatti <42481638+goldenx86@users.noreply.github.com> | 2023-01-13 08:55:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 08:55:26 +0100 |
commit | 4294429a079a5902531d36d86229eb970b0c3d53 (patch) | |
tree | 373e7edfd836949b6b35ea73e89d6350ca9ca416 /src | |
parent | UI change (diff) | |
download | yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.gz yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.bz2 yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.lz yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.xz yuzu-4294429a079a5902531d36d86229eb970b0c3d53.tar.zst yuzu-4294429a079a5902531d36d86229eb970b0c3d53.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/settings.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 6a5569fe0..b1a2aa8b2 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -153,6 +153,14 @@ void UpdateRescalingInfo() { info.up_scale = 6; info.down_shift = 0; break; + case ResolutionSetup::Res7X: + info.up_scale = 7; + info.down_shift = 0; + break; + case ResolutionSetup::Res8X: + info.up_scale = 8; + info.down_shift = 0; + break; default: ASSERT(false); info.up_scale = 1; |