Skip to content

Commit

Permalink
Change 16-bit to 16-bpc in remastering description
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaldaien committed Sep 9, 2023
1 parent 26de7be commit f4d62c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/plugins/bethesda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
static iSK_INI* game_ini = nullptr;
static iSK_INI* gameCustom_ini = nullptr;

#ifdef _WIN64
#if 1

static sk::ParameterFloat* sf_1stFOV = nullptr;
static sk::ParameterFloat* sf_3rdFOV = nullptr;
Expand Down Expand Up @@ -57,12 +57,12 @@ bool SK_SF_PlugInCfg() {
ImGui::PushStyleColor(ImGuiCol_HeaderActive, ImVec4(0.87f, 0.53f, 0.53f, 0.80f));
ImGui::TreePush("");

if (ImGui::CollapsingHeader ("Render Quality"))
if (ImGui::CollapsingHeader ("Render Quality", ImGuiTreeNodeFlags_DefaultOpen))
{
bool changed = false;

ImGui::TreePush ("");
changed |= ImGui::Checkbox ("Upgrade Base RTs to 16-bit color", &bRemasterBasicRTs);
changed |= ImGui::Checkbox ("Upgrade Base RTs to 16-bpc color", &bRemasterBasicRTs);

if (ImGui::IsItemHovered ())
ImGui::SetTooltip ("Eliminates banding on UI at the cost of (negligible) extra VRAM");
Expand All @@ -72,7 +72,7 @@ bool SK_SF_PlugInCfg() {
{
ImGui::SameLine ();

changed |= ImGui::Checkbox ("Upgrade Most 8-bit RTs to 16-bit color", &bRemasterExtendedRTs);
changed |= ImGui::Checkbox ("Upgrade Most 8-bit RTs to 16-bpc color", &bRemasterExtendedRTs);

if (ImGui::IsItemHovered ())
{
Expand Down

0 comments on commit f4d62c2

Please sign in to comment.