Skip to content

Commit

Permalink
chore: clearer upscale options
Browse files Browse the repository at this point in the history
  • Loading branch information
doodlum committed Sep 29, 2024
1 parent 83353df commit 6d59b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Upscaling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_WITH_DEFAULT(
void Upscaling::DrawSettings()
{
if (ImGui::CollapsingHeader("Upscaling", ImGuiTreeNodeFlags_OpenOnArrow | ImGuiTreeNodeFlags_OpenOnDoubleClick)) {
const char* upscaleModes[] = { "TAA", "FSR", "DLSS" };
const char* upscaleModes[] = { "Temporal Anti-Aliasing", "AMD FSR 3.1", "NVIDIA DLAA" };

if (Streamline::GetSingleton()->featureDLSS) {
ImGui::SliderInt("Mode", (int*)&settings.upscaleMode, 0, 2, std::format("{}", upscaleModes[(uint)settings.upscaleMode]).c_str());
Expand Down

0 comments on commit 6d59b81

Please sign in to comment.