Matías Locatti
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
0 deletions
-
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; |
|
|
|
|