mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-27 21:44:13 -04:00
Change bitmap signedness to allow conversion to other data types
Buffered bitmap array should have been type unsigned char not type char Includes change to manual In response to (and hopefully fixing) #182 reported by Marcelo Antunes
This commit is contained in:
parent
e8b56faa11
commit
52214c5a1c
3 changed files with 9 additions and 8 deletions
|
@ -125,7 +125,7 @@ extern "C" {
|
|||
unsigned char encoded_data[200][143];
|
||||
int row_height[200]; /* Largest symbol is 189 x 189 Han Xin */
|
||||
char errtxt[100];
|
||||
char *bitmap;
|
||||
unsigned char *bitmap;
|
||||
int bitmap_width;
|
||||
int bitmap_height;
|
||||
unsigned int bitmap_byte_length;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue