Remove "Disable Lighting".

This commit is contained in:
NeoBrainX
2012-02-25 23:34:28 +01:00
parent 1d9ac2f6e1
commit 1dd6b978c1
7 changed files with 1 additions and 28 deletions

View File

@ -159,16 +159,6 @@ void VertexManager::AddVertices(int primitive, int numVertices)
void VertexManager::Flush()
{
// Disable Lighting
// TODO - Is this a good spot for this code?
if (g_ActiveConfig.bDisableLighting)
{
for (u32 i = 0; i < xfregs.numChan.numColorChans; i++)
{
xfregs.alpha[i].enablelighting = false;
xfregs.color[i].enablelighting = false;
}
}
g_vertex_manager->vFlush();
}