mirror of
https://github.com/pdewacht/brlaser
synced 2025-07-28 03:29:45 +02:00
Reduce max block size to 64 lines (#40)
This fixes HL-1210W, maybe other HL printers as well?
This commit is contained in:
@ -59,7 +59,7 @@ class block {
|
||||
|
||||
private:
|
||||
static const unsigned max_block_size_ = 16350;
|
||||
static const unsigned max_lines_per_block_ = 128;
|
||||
static const unsigned max_lines_per_block_ = 64;
|
||||
|
||||
std::vector<std::vector<uint8_t>> lines_;
|
||||
int line_bytes_;
|
||||
|
Reference in New Issue
Block a user