* Updated to ZDoom r2866:

- Cleaned up i_music.cpp.
- FScanner::Float is a double so there's no need to cast values to float before assigning them to this variable.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@1014 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
gez 2010-09-29 21:10:20 +00:00
parent c0496b5310
commit a48591975b
8 changed files with 313 additions and 312 deletions

View file

@ -868,18 +868,6 @@ void AM_initVariables ()
old_m_h = m_h;
}
/*
static void GetComponents (int color, DWORD *palette, float &r, float &g, float &b)
{
if (palette)
color = palette[color];
r = (float)RPART(color);
g = (float)GPART(color);
b = (float)BPART(color);
}
*/
//=============================================================================
//
//