early-access version 2222
This commit is contained in:
parent
77594600a1
commit
4911101702
4 changed files with 8 additions and 8 deletions
|
@ -57,7 +57,7 @@ function(check_submodules_present)
|
|||
string(REGEX REPLACE "path *= *" "" module ${module})
|
||||
if (NOT EXISTS "${PROJECT_SOURCE_DIR}/${module}/.git")
|
||||
message(FATAL_ERROR "Git submodule ${module} not found. "
|
||||
"Please run: git submodule update --init --recursive")
|
||||
"Please run: \ngit submodule update --init --recursive")
|
||||
endif()
|
||||
endforeach()
|
||||
endfunction()
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 2220.
|
||||
This is the source code for early-access 2222.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -429,7 +429,7 @@
|
|||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>AMD's FidelityFX™️ Super Resolution [Vulkan Only]</string>
|
||||
<string>AMD FidelityFX™️ Super Resolution [Vulkan Only]</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
|
|
|
@ -3118,7 +3118,7 @@ void GMainWindow::UpdateFilterText() {
|
|||
filter_status_button->setText(tr("SCALEFORCE"));
|
||||
break;
|
||||
case Settings::ScalingFilter::Fsr:
|
||||
filter_status_button->setText(tr("AMD'S FIDELITYFX SR"));
|
||||
filter_status_button->setText(tr("FSR"));
|
||||
break;
|
||||
default:
|
||||
filter_status_button->setText(tr("BILINEAR"));
|
||||
|
@ -3129,15 +3129,15 @@ void GMainWindow::UpdateFilterText() {
|
|||
void GMainWindow::UpdateAAText() {
|
||||
const auto aa_mode = Settings::values.anti_aliasing.GetValue();
|
||||
switch (aa_mode) {
|
||||
case Settings::AntiAliasing::Fxaa:
|
||||
aa_status_button->setText(tr("FXAA"));
|
||||
break;
|
||||
case Settings::AntiAliasing::None:
|
||||
aa_status_button->setText(tr("NO AA"));
|
||||
break;
|
||||
default:
|
||||
case Settings::AntiAliasing::Fxaa:
|
||||
aa_status_button->setText(tr("FXAA"));
|
||||
break;
|
||||
default:
|
||||
aa_status_button->setText(tr("NO AA"));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue