| 911 | } |
| 912 | |
| 913 | void consoleSetPosColor(int x, int y, int color) { |
| 914 | u16* map = BG_MAP_RAM_SUB(22); |
| 915 | map[y*32+x] &= ~TILE_PALETTE(15); |
| 916 | map[y*32+x] |= TILE_PALETTE(color); |
| 917 | } |
| 918 | |
| 919 | void consoleSetLineColor(int line, int color) { |
| 920 | u16* map = BG_MAP_RAM_SUB(22); |
nothing calls this directly
no outgoing calls
no test coverage detected