fixed wrong cache handing in manipulating the attributes in raddic

This commit is contained in:
2017-12-12 03:17:02 +00:00
parent 80ade41ea9
commit b081c10f83
3 changed files with 125 additions and 81 deletions

View File

@ -96,7 +96,7 @@ struct qse_raddic_vendor_t
typedef struct qse_raddic_t qse_raddic_t;
#define QSE_RADDIC_ATTR_MAKE(vendor,value) ((((vendor) & 0xFFFF) << 8) | (value))
#define QSE_RADDIC_ATTR_VENDOR(attr) (((attr) >> 8) & 0xFFFF);
#define QSE_RADDIC_ATTR_VENDOR(attr) (((attr) >> 8) & 0xFFFF)
#define QSE_RADDIC_ATTR_VALUE(attr) ((attr) & 0xFF)
#if defined(__cplusplus)