diff --git a/deps/datReader/DatCat.cpp b/deps/datReader/DatCat.cpp index 2ce9566f..8bd8e79e 100644 --- a/deps/datReader/DatCat.cpp +++ b/deps/datReader/DatCat.cpp @@ -21,12 +21,12 @@ Cat::Cat( const std::filesystem::path& basePath, uint32_t catNum, const std::str std::string prefix = ss.str() + "0000.win32"; // Creates the index: XX0000.win32.index - m_index = std::unique_ptr( new Index( basePath / "//ffxiv" / ( prefix + ".index" ) ) ); + m_index = std::unique_ptr( new Index( basePath / "ffxiv" / ( prefix + ".index" ) ) ); // For all dat files linked to this index, create it: XX0000.win32.datX for( uint32_t i = 0; i < getIndex().getDatCount(); ++i ) { - m_dats.emplace_back( std::unique_ptr( new Dat( basePath / "//ffxiv" / ( prefix + ".dat" + std::to_string( i ) ), i ) ) ); + m_dats.emplace_back( std::unique_ptr( new Dat( basePath / "ffxiv" / ( prefix + ".dat" + std::to_string( i ) ), i ) ) ); } }