mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
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:
parent
514a3bfd64
commit
f30cc01a7a
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ void S_MusicVolume(int32_t volume)
|
||||||
void S_MenuSound(void)
|
void S_MenuSound(void)
|
||||||
{
|
{
|
||||||
static int32_t SoundNum=0;
|
static int32_t SoundNum=0;
|
||||||
uint8_t menusnds[] =
|
int32_t menusnds[] =
|
||||||
{
|
{
|
||||||
LASERTRIP_EXPLODE,
|
LASERTRIP_EXPLODE,
|
||||||
DUKE_GRUNT,
|
DUKE_GRUNT,
|
||||||
|
|
Loading…
Reference in a new issue