mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-29 13:51:24 +00:00
MP Lua: MusicExists Mixed D+C fix (buildbots)
This commit is contained in:
parent
950e2ddd1a
commit
37f27888c8
1 changed files with 2 additions and 2 deletions
|
@ -1906,6 +1906,8 @@ static int lib_sMusicInfo(lua_State *L)
|
||||||
|
|
||||||
static int lib_sMusicExists(lua_State *L)
|
static int lib_sMusicExists(lua_State *L)
|
||||||
{
|
{
|
||||||
|
boolean checkMIDI = lua_opttrueboolean(L, 2);
|
||||||
|
boolean checkDigi = lua_opttrueboolean(L, 3);
|
||||||
#ifdef MUSICSLOT_COMPATIBILITY
|
#ifdef MUSICSLOT_COMPATIBILITY
|
||||||
const char *music_name;
|
const char *music_name;
|
||||||
UINT32 music_num;
|
UINT32 music_num;
|
||||||
|
@ -1933,8 +1935,6 @@ static int lib_sMusicExists(lua_State *L)
|
||||||
#else
|
#else
|
||||||
const char *music_name = luaL_checkstring(L, 1);
|
const char *music_name = luaL_checkstring(L, 1);
|
||||||
#endif
|
#endif
|
||||||
boolean checkMIDI = lua_opttrueboolean(L, 2);
|
|
||||||
boolean checkDigi = lua_opttrueboolean(L, 3);
|
|
||||||
NOHUD
|
NOHUD
|
||||||
lua_pushboolean(L, S_MusicExists(music_name, checkMIDI, checkDigi));
|
lua_pushboolean(L, S_MusicExists(music_name, checkMIDI, checkDigi));
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue