| 917 | } |
| 918 | |
| 919 | void consoleSetLineColor(int line, int color) { |
| 920 | u16* map = BG_MAP_RAM_SUB(22); |
| 921 | for (int i=0; i<32; i++) { |
| 922 | map[line*32+i] &= ~TILE_PALETTE(15); |
| 923 | map[line*32+i] |= TILE_PALETTE(color); |
| 924 | } |
| 925 | } |
| 926 | |
| 927 | void iprintfColored(int palette, const char *format, ...) { |
| 928 | va_list args; |
nothing calls this directly
no outgoing calls
no test coverage detected