0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-27 04:43:52 +01:00
This commit is contained in:
2025-12-25 21:41:38 +01:00
parent 9c2d6e4990
commit 394c26a49e
5 changed files with 23 additions and 13 deletions

View File

@@ -343,8 +343,8 @@ uint8_t get_rds_custom_groups2(RDSEncoder* enc, RDSGroup *group) {
}
return 0;
}
int get_rdsp_lua_group(RDSGroup *group) {
int generated = lua_group(group);
int get_rdsp_lua_group(RDSGroup *group, const char grp) {
int generated = lua_group(group, grp);
if(generated) group->is_type_b = (IS_TYPE_B(group->b) != 0);
return generated;
}