Replaced most D3DX dependencies. Added Brendan's not-yet-functional networking code.

This commit is contained in:
Chris Danford
2002-10-28 05:30:45 +00:00
parent 5110da12d3
commit 73f7db6b15
99 changed files with 1203 additions and 718 deletions
+2 -2
View File
@@ -278,7 +278,7 @@ bool ThemeManager::GetMetricB( CString sClassName, CString sValueName )
return atoi( GetMetric(sClassName,sValueName) ) != 0;
}
D3DXCOLOR ThemeManager::GetMetricC( CString sClassName, CString sValueName )
RageColor ThemeManager::GetMetricC( CString sClassName, CString sValueName )
{
float r=1,b=1,g=1,a=1; // initialize in case sscanf fails
CString sValue = GetMetric(sClassName,sValueName);
@@ -291,5 +291,5 @@ D3DXCOLOR ThemeManager::GetMetricC( CString sClassName, CString sValueName )
ASSERT(0);
}
return D3DXCOLOR(r,g,b,a);
return RageColor(r,g,b,a);
}