0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-27 12:53:53 +01:00

fix rds2 custom group

This commit is contained in:
2025-03-24 21:47:19 +01:00
parent 419f6f8925
commit 7b0ee882d4

View File

@@ -425,10 +425,10 @@ static uint8_t get_rds_custom_groups(RDSEncoder* enc, uint16_t *blocks) {
static uint8_t get_rds_custom_groups2(RDSEncoder* enc, uint16_t *blocks) {
if(enc->state[enc->program].custom_group2[0] == 1) {
enc->state[enc->program].custom_group2[0] = 0;
blocks[0] = enc->state[enc->program].custom_group[1];
blocks[1] = enc->state[enc->program].custom_group[2];
blocks[2] = enc->state[enc->program].custom_group[3];
blocks[3] = enc->state[enc->program].custom_group[4];
blocks[0] = enc->state[enc->program].custom_group2[1];
blocks[1] = enc->state[enc->program].custom_group2[2];
blocks[2] = enc->state[enc->program].custom_group2[3];
blocks[3] = enc->state[enc->program].custom_group2[4];
return 1;
}
return 0;