mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-17 18:21:10 +00:00
Merge branch 'master' of http://git.magicalgirl.moe/STJr/SRB2Internal.git into addfile_menu
This commit is contained in:
commit
fd81a82cca
4 changed files with 5 additions and 4 deletions
|
@ -266,4 +266,4 @@ int LUA_BlockmapLib(lua_State *L)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -367,6 +367,7 @@ static void M_DrawMainVideoMenu(void);
|
|||
static void M_DrawVideoMode(void);
|
||||
static void M_DrawColorMenu(void);
|
||||
static void M_DrawSoundMenu(void);
|
||||
static void M_DrawScreenshotMenu(void);
|
||||
static void M_DrawMonitorToggles(void);
|
||||
#ifdef HWRENDER
|
||||
static void M_OGL_DrawFogMenu(void);
|
||||
|
|
|
@ -2929,7 +2929,7 @@ void EV_CrumbleChain(sector_t *sec, ffloor_t *rover)
|
|||
fixed_t leftx, rightx;
|
||||
fixed_t topy, bottomy;
|
||||
fixed_t topz, bottomz;
|
||||
fixed_t widthfactor, heightfactor;
|
||||
fixed_t widthfactor = FRACUNIT, heightfactor = FRACUNIT;
|
||||
fixed_t a, b, c;
|
||||
mobjtype_t type = MT_ROCKCRUMBLE1;
|
||||
fixed_t spacing = (32<<FRACBITS);
|
||||
|
|
|
@ -406,14 +406,14 @@ void S_StopSoundByNum(sfxenum_t sfxnum)
|
|||
void S_StartCaption(sfxenum_t sfx_id, INT32 cnum, UINT16 lifespan)
|
||||
{
|
||||
UINT8 i, set, moveup, start;
|
||||
boolean same;
|
||||
boolean same = false;
|
||||
sfxinfo_t *sfx;
|
||||
|
||||
if (!cv_closedcaptioning.value) // no captions at all
|
||||
return;
|
||||
|
||||
// check for bogus sound #
|
||||
I_Assert(sfx_id >= 0); // allows sfx_None; this shouldn't be allowed directly if S_StartCaption is ever exposed to Lua by itself
|
||||
// I_Assert(sfx_id >= 0); -- allowing sfx_None; this shouldn't be allowed directly if S_StartCaption is ever exposed to Lua by itself
|
||||
I_Assert(sfx_id < NUMSFX);
|
||||
|
||||
sfx = &S_sfx[sfx_id];
|
||||
|
|
Loading…
Reference in a new issue