fix data type

This commit is contained in:
Glenn Maynard
2003-02-14 06:57:53 +00:00
parent 7c86c7eb91
commit 3f870fd44a
+1 -1
View File
@@ -651,7 +651,7 @@ void SongManager::GetExtraStageInfo( bool bExtra2, CString sPreferredGroup, cons
// should we do something fancy here, like turn on different effects?
int iSongHash = GetHashForString( pSongOut->GetSongDir() );
switch( ((UINT)iSongHash) % 5 )
switch( ((unsigned int)iSongHash) % 5 )
{
case 0: po_out.m_bEffects[PlayerOptions::EFFECT_DIZZY] = true; break;
case 1: po_out.m_bDark = true; break;