| 1254 | // |
| 1255 | //***************************************************************************** |
| 1256 | void DLParser_SetFogColor( MicroCodeCommand command ) |
| 1257 | { |
| 1258 | #ifdef DAEDALUS_DEBUG_DISPLAYLIST |
| 1259 | DL_PF(" RGBA: %d %d %d %d", command.color.r, command.color.g, command.color.b, command.color.a); |
| 1260 | #endif |
| 1261 | //c32 fog_colour( command.color.r, command.color.g, command.color.b, command.color.a ); |
| 1262 | c32 fog_colour( command.color.r, command.color.g, command.color.b, 0 ); //alpha is always 0 |
| 1263 | |
| 1264 | gRenderer->SetFogColour( fog_colour ); |
| 1265 | } |
| 1266 | |
| 1267 | //***************************************************************************** |
| 1268 | // |
nothing calls this directly
no test coverage detected