In C++ build, fix "narrowing conversion inside { } is ill-formed" warning.

This also exposes an actual issue. The sound definitions may be dynamically
remapped, in which case they are not necessarily <=255 any more.

BUILD_LUNATIC.

git-svn-id: https://svn.eduke32.com/eduke32@4069 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2013-09-21 13:38:56 +00:00
parent 514a3bfd64
commit f30cc01a7a

View file

@ -166,7 +166,7 @@ void S_MusicVolume(int32_t volume)
void S_MenuSound(void)
{
static int32_t SoundNum=0;
uint8_t menusnds[] =
int32_t menusnds[] =
{
LASERTRIP_EXPLODE,
DUKE_GRUNT,