mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 11:10:39 +00:00
Partial build fix for Lunatic.
git-svn-id: https://svn.eduke32.com/eduke32@6426 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f5d0acfee8
commit
c750f8262a
1 changed files with 2 additions and 2 deletions
|
@ -1159,14 +1159,14 @@ static int G_StartTrackSlot(int const volumeNum, int const levelNum)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef LUNATIC
|
||||||
static void G_StartTrackSlotWrap(int const volumeNum, int const levelNum)
|
static void G_StartTrackSlotWrap(int const volumeNum, int const levelNum)
|
||||||
{
|
{
|
||||||
if (EDUKE32_PREDICT_FALSE(G_StartTrackSlot(volumeNum, levelNum)))
|
if (EDUKE32_PREDICT_FALSE(G_StartTrackSlot(volumeNum, levelNum)))
|
||||||
CON_ERRPRINTF("invalid level %d or null music for volume %d level %d\n",
|
CON_ERRPRINTF("invalid level %d or null music for volume %d level %d\n",
|
||||||
levelNum, volumeNum, levelNum);
|
levelNum, volumeNum, levelNum);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
#ifdef LUNATIC
|
|
||||||
int G_StartTrack(int const levelNum)
|
int G_StartTrack(int const levelNum)
|
||||||
{
|
{
|
||||||
return G_StartTrackSlot(ud.volume_number, levelNum);
|
return G_StartTrackSlot(ud.volume_number, levelNum);
|
||||||
|
|
Loading…
Reference in a new issue