| 110 | {} |
| 111 | |
| 112 | void adjust(int8_t nfg) { fg = nfg&7; bold = !!(nfg&8); } |
| 113 | void adjust(int8_t nfg, bool nbold) { fg = nfg; bold = nbold; } |
| 114 | void adjust(int8_t nfg, int8_t nbg) { adjust(nfg); bg = nbg; } |
| 115 | void adjust(int8_t nfg, bool nbold, int8_t nbg) { adjust(nfg, nbold); bg = nbg; } |