This commit is contained in:
Charles 2001-05-17 20:04:57 +00:00
parent 4d00a63deb
commit b0ca39dc2c
9 changed files with 24 additions and 16 deletions

View file

@ -379,7 +379,7 @@ void CNpcSmallJellyfishEnemy::fireAsProjectile( s16 heading )
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
CVECTOR CNpcSmallJellyfishEnemy::getRGB()
u32 CNpcSmallJellyfishEnemy::getRGB()
{
CVECTOR rgb;
@ -387,5 +387,8 @@ CVECTOR CNpcSmallJellyfishEnemy::getRGB()
rgb.g = 128;
rgb.b = 255;
return( rgb );
u32 rgbVal;
rgbVal = rgb.r + ( rgb.g << 8 ) + ( rgb.b << 16 );
return( rgbVal );
}