From 829503568e9a709b47d54fb76fbb6ff39518af45 Mon Sep 17 00:00:00 2001 From: bicarus-dev <202771338+bicarus-dev@users.noreply.github.com> Date: Mon, 6 Jul 2026 01:26:39 -0700 Subject: [PATCH] fix UI text for -sdvxnolive2d --- src/spice2x/launcher/options.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/spice2x/launcher/options.cpp b/src/spice2x/launcher/options.cpp index 1a0d3aa..bf02992 100644 --- a/src/spice2x/launcher/options.cpp +++ b/src/spice2x/launcher/options.cpp @@ -1036,16 +1036,16 @@ static const std::vector OPTION_DEFINITIONS = { .title = "SDVX Disable Live2D (EXPERIMENTAL)", .name = "sdvxnolive2d", .desc = "Skip rendering the SDVX Live2D graphics to save GPU.\n\n" - "Off: leave Live2D as-is.\n" - "Always: never render Live2D (also removes the menu navigator).\n" - "During songs: only skip Live2D during a song; keeps the menu navigator. Scene detection relies on game logging.", + "off: leave Live2D as-is.\n" + "always: hide Live2D (also hides menu navigator).\n" + "ingame: only hide Live2D during a song; keeps the menu navigator. Scene detection relies on game logging.", .type = OptionType::Enum, .game_name = "Sound Voltex", .category = "Advanced Game Options", .elements = { {"off", "Show Live2D"}, - {"always", "Never show Live2D"}, - {"ingame", "Show navigators only"}, + {"always", "Hide Live2D"}, + {"ingame", "Hide during songs"}, }, .quick_setting_category = "Game", },