diff options
| author | SulfurNitride <lukew19@proton.me> | 2026-06-25 14:05:03 -0500 |
|---|---|---|
| committer | SulfurNitride <lukew19@proton.me> | 2026-06-25 14:05:03 -0500 |
| commit | 22f1f1812ebd554c92d1150a6a7bdfff78c2053b (patch) | |
| tree | bae2e667cd8f56272833562ba0ca50252012b2b3 /libs | |
| parent | 91aef6e4d96cc88b3d71a4a7a6b365650c401f5c (diff) | |
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 <noreply@anthropic.com>
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/tool_bethinipie/src/bethinipie.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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<QString, QString> s_MO2ToBethiniName = { {"Fallout 4", "Fallout 4"}, {"Fallout New Vegas", "Fallout New Vegas"}, {"New Vegas", "Fallout New Vegas"}, + {"TTW", "Fallout New Vegas"}, {"Starfield", "Starfield"}, }; |
