Bug fix: burn_make_input_sheet_v07t() falsly recognized double byte encoding

This commit is contained in:
Thomas Schmitt 2016-03-30 11:33:20 +00:00
parent 9e852c2b7c
commit f4ce749188
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2016.03.17.203356"
#define Cdrskin_timestamP "2016.03.30.113137"

View File

@ -1259,7 +1259,7 @@ static int collect_payload(unsigned char *text_packs, int num_packs,
break;
memcpy(*payload + *payload_count, pack + 4, 12);
*payload_count += 12;
if (pack[4] & 128)
if (pack[3] & 128)
double_byte = 1;
}
(*payload)[*payload_count] = 0;