Skip to content

Commit

Permalink
Include directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Oct 6, 2023
1 parent d90aac5 commit 41d6cb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gamefalloutnv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ QString GameFalloutNV::identifyGamePath() const
auto subDirs = startPath.entryList({"Fallout New Vegas*"},
QDir::Dirs | QDir::NoDotAndDotDot);
if (!subDirs.isEmpty())
result = subDirs.first();
result = startPath.absolutePath() + QDir::separator() + subDirs.first();
}
}
return result;
Expand Down

0 comments on commit 41d6cb9

Please sign in to comment.