diff --git a/redumper.ixx b/redumper.ixx index 78a9447..fe5ffc9 100644 --- a/redumper.ixx +++ b/redumper.ixx @@ -178,13 +178,13 @@ std::string generate_image_name(std::string drive) std::list get_cd_batch_commands(Context &ctx) { if(profile_is_cd(ctx.current_profile)) - return std::list{ "dump", "protection", "refine", "split", "hash", "skeleton", "info" }; + return std::list{ "dump", "protection", "refine", "split", "hash", "info" }; else if(profile_is_dvd(ctx.current_profile)) - return std::list{ "dump", "refine", "dvdkey", "hash", "skeleton", "info" }; + return std::list{ "dump", "refine", "dvdkey", "hash", "info" }; else if(profile_is_bluray(ctx.current_profile)) - return std::list{ "dump", "refine", "hash", "skeleton", "info" }; + return std::list{ "dump", "refine", "hash", "info" }; else if(profile_is_hddvd(ctx.current_profile)) - return std::list{ "dump", "refine", "hash", "skeleton", "info" }; + return std::list{ "dump", "refine", "hash", "info" }; else return std::list{}; }