finish CKBitmapData::DumpToChunk

This commit is contained in:
2023-09-28 23:29:52 +08:00
parent b217da8fb8
commit 1575186c69
7 changed files with 119 additions and 7 deletions

View File

@ -334,6 +334,14 @@ namespace LibCmo::CK2 {
return finder->second;
}
bool CKFileVisitor::AddSavedFile(CKSTRING u8FileName) {
if (m_IsReader) {
return false;
} else {
return m_Writer->AddSavedFile(u8FileName);
}
}
#pragma endregion
}