early-access version 3207
This commit is contained in:
parent
f918c13b12
commit
9a76446cba
2 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3206.
|
This is the source code for early-access 3207.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -64,10 +64,11 @@ float TSCEntry::MaxAnisotropy() const noexcept {
|
||||||
return 1.0f;
|
return 1.0f;
|
||||||
}
|
}
|
||||||
const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();
|
const auto anisotropic_settings = Settings::values.max_anisotropy.GetValue();
|
||||||
u32 added_anisotropic{};
|
s32 added_anisotropic{};
|
||||||
if (anisotropic_settings == 0) {
|
if (anisotropic_settings == 0) {
|
||||||
added_anisotropic = Settings::values.resolution_info.up_scale >>
|
added_anisotropic = Settings::values.resolution_info.up_scale >>
|
||||||
Settings::values.resolution_info.down_shift;
|
Settings::values.resolution_info.down_shift;
|
||||||
|
added_anisotropic = std::max(added_anisotropic - 1, 0);
|
||||||
} else {
|
} else {
|
||||||
added_anisotropic = Settings::values.max_anisotropy.GetValue() - 1U;
|
added_anisotropic = Settings::values.max_anisotropy.GetValue() - 1U;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue