Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

dec: Add support for XOR-cipher Valkyria ODN archives #195

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/dec/valkyria/odn_archive_decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ static void read_meta_v1(
dec::ArchiveMeta *meta,
io::BaseByteStream &input_stream)
{
input_stream.seek(0);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Addressed a small issue where the decoder was skipping over the first file.

while (true)
{
auto entry = std::make_unique<dec::PlainArchiveEntry>();
Expand Down