| 1239 | // |
| 1240 | //***************************************************************************** |
| 1241 | void DLParser_SetFillColor( MicroCodeCommand command ) |
| 1242 | { |
| 1243 | u32 fill_colour {command.inst.cmd1}; |
| 1244 | |
| 1245 | #ifdef DAEDALUS_DEBUG_DISPLAYLIST |
| 1246 | N64Pf5551 n64col( (u16)fill_colour ); |
| 1247 | DL_PF( " Color5551=0x%04x", n64col.Bits ); |
| 1248 | #endif |
| 1249 | |
| 1250 | gRenderer->SetFillColour( fill_colour ); |
| 1251 | } |
| 1252 | |
| 1253 | //***************************************************************************** |
| 1254 | // |
nothing calls this directly
no test coverage detected