Skip to content

Commit

Permalink
skeleton change ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
superg committed Nov 27, 2023
1 parent cc8e9e2 commit 14cf796
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions redumper.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,13 @@ std::string generate_image_name(std::string drive)
std::list<std::string> get_cd_batch_commands(Context &ctx)
{
if(profile_is_cd(ctx.current_profile))
return std::list<std::string>{ "dump", "protection", "refine", "split", "hash", "skeleton", "info" };
return std::list<std::string>{ "dump", "protection", "refine", "split", "hash", "info" };
else if(profile_is_dvd(ctx.current_profile))
return std::list<std::string>{ "dump", "refine", "dvdkey", "hash", "skeleton", "info" };
return std::list<std::string>{ "dump", "refine", "dvdkey", "hash", "info" };
else if(profile_is_bluray(ctx.current_profile))
return std::list<std::string>{ "dump", "refine", "hash", "skeleton", "info" };
return std::list<std::string>{ "dump", "refine", "hash", "info" };
else if(profile_is_hddvd(ctx.current_profile))
return std::list<std::string>{ "dump", "refine", "hash", "skeleton", "info" };
return std::list<std::string>{ "dump", "refine", "hash", "info" };
else
return std::list<std::string>{};
}
Expand Down

0 comments on commit 14cf796

Please sign in to comment.