mirror of
https://github.com/vcmi/vcmi.git
synced 2025-05-13 22:06:58 +02:00
All CArchiveLoader constructor parameters now have different names from members
This commit is contained in:
parent
5cab8ede90
commit
a950fb379e
@ -24,10 +24,10 @@ ArchiveEntry::ArchiveEntry()
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CArchiveLoader::CArchiveLoader(std::string _mountPoint, bfs::path _archive, bool extractArchives) :
|
CArchiveLoader::CArchiveLoader(std::string _mountPoint, bfs::path _archive, bool _extractArchives) :
|
||||||
archive(std::move(_archive)),
|
archive(std::move(_archive)),
|
||||||
mountPoint(std::move(_mountPoint)),
|
mountPoint(std::move(_mountPoint)),
|
||||||
extractArchives(extractArchives)
|
extractArchives(_extractArchives)
|
||||||
{
|
{
|
||||||
// Open archive file(.snd, .vid, .lod)
|
// Open archive file(.snd, .vid, .lod)
|
||||||
CFileInputStream fileStream(archive);
|
CFileInputStream fileStream(archive);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user