Poprawione flagowanie metody pakowania

This commit is contained in:
yanczi 2025-11-07 01:28:21 +01:00
parent 66e776ee87
commit 31f08e52d0
10 changed files with 287 additions and 200 deletions

View file

@ -143,10 +143,10 @@ void ViewCargo::GetFileList(const std::string& path)
cargo.read(reinterpret_cast<char*>(&fhTmp.offset), sizeof(fhTmp.offset));
cargo.read(reinterpret_cast<char*>(&fhTmp.size), sizeof(fhTmp.size));
cargo.read(reinterpret_cast<char*>(&fhTmp.crc), sizeof(fhTmp.crc));
cargo.read(reinterpret_cast<char*>(&fhTmp.isZip), sizeof(fhTmp.isZip));
cargo.read(reinterpret_cast<char*>(&fhTmp.flag), sizeof(fhTmp.flag));
//Tworzenie wierszy tabeli
CreateTableRow(fhTmp.nameFile, fhTmp.isZip, fhTmp.hashName);
CreateTableRow(fhTmp.nameFile, fhTmp.flag, fhTmp.hashName);
}
cargo.close();