Update LOOT to use new HTML redirect doc

This commit is contained in:
Oliver Hamlet
2016-09-22 07:52:30 +01:00
parent f54698891b
commit b523bca329
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ Fallout: New Vegas.
namespace loot {
boost::filesystem::path LootPaths::getReadmePath() {
return lootAppPath_ / "docs" / "LOOT Readme.html";
return lootAppPath_ / "docs" / "index.html";
}
boost::filesystem::path LootPaths::getUIIndexPath() {
+1 -1
View File
@@ -34,7 +34,7 @@ namespace test {
TEST(LootPaths, getReadmePathShouldUseLootAppPath) {
LootPaths::initialise();
EXPECT_EQ(boost::filesystem::current_path() / "docs" / "LOOT Readme.html", LootPaths::getReadmePath());
EXPECT_EQ(boost::filesystem::current_path() / "docs" / "index.html", LootPaths::getReadmePath());
}
TEST(LootPaths, getUIIndexPathShouldUseLootAppPath) {