Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libslic3r/Zipper.hpp')
-rw-r--r--src/libslic3r/Zipper.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libslic3r/Zipper.hpp b/src/libslic3r/Zipper.hpp
index be1e69b5c..bbaf2f05e 100644
--- a/src/libslic3r/Zipper.hpp
+++ b/src/libslic3r/Zipper.hpp
@@ -28,7 +28,7 @@ public:
// Will blow up in a runtime exception if the file cannot be created.
explicit Zipper(const std::string& zipfname,
- e_compression level = NO_COMPRESSION);
+ e_compression level = FAST_COMPRESSION);
~Zipper();
// No copies allwed, this is a file resource...
@@ -49,7 +49,7 @@ public:
/// Add a new binary file entry with an instantly given byte buffer.
/// This method throws exactly like finish_entry() does.
- void add_entry(const std::string& name, const std::uint8_t* data, size_t l);
+ void add_entry(const std::string& name, const void* data, size_t bytes);
// Writing data to the archive works like with standard streams. The target
// within the zip file is the entry created with the add_entry method.