From 22f1f1812ebd554c92d1150a6a7bdfff78c2053b Mon Sep 17 00:00:00 2001 From: SulfurNitride Date: Thu, 25 Jun 2026 14:05:03 -0500 Subject: Fix TTW not recognized as Fallout New Vegas in BethINI Pie plugin GameFalloutTTW::gameName() returns "TTW" but the s_MO2ToBethiniName map only contained "Fallout New Vegas" and "New Vegas", causing the "Unsupported Game" dialog to appear whenever a TTW instance was active. Co-Authored-By: Claude Sonnet 4.6 --- libs/tool_bethinipie/src/bethinipie.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/tool_bethinipie/src/bethinipie.cpp b/libs/tool_bethinipie/src/bethinipie.cpp index 659a7d6..4dfb3db 100644 --- a/libs/tool_bethinipie/src/bethinipie.cpp +++ b/libs/tool_bethinipie/src/bethinipie.cpp @@ -38,6 +38,7 @@ static const QMap s_MO2ToBethiniName = { {"Fallout 4", "Fallout 4"}, {"Fallout New Vegas", "Fallout New Vegas"}, {"New Vegas", "Fallout New Vegas"}, + {"TTW", "Fallout New Vegas"}, {"Starfield", "Starfield"}, }; -- cgit v1.3.1