mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-31 05:30:48 +00:00
Merge branch 'cutscene-fix' into 'next'
[SUGOI] Remove "singletics" code in F_WriteText (resolves #1033) Closes #1033 See merge request STJr/SRB2!2022
This commit is contained in:
commit
94f6fb03ca
1 changed files with 0 additions and 6 deletions
|
@ -224,7 +224,6 @@ static INT32 cutscene_writeptr = 0;
|
|||
static INT32 cutscene_textcount = 0;
|
||||
static INT32 cutscene_textspeed = 0;
|
||||
static UINT8 cutscene_boostspeed = 0;
|
||||
static tic_t cutscene_lasttextwrite = 0;
|
||||
|
||||
// STJR Intro
|
||||
char stjrintro[9] = "STJRI000";
|
||||
|
@ -240,11 +239,6 @@ static UINT8 F_WriteText(void)
|
|||
{
|
||||
INT32 numtowrite = 1;
|
||||
const char *c;
|
||||
tic_t ltw = I_GetTime();
|
||||
|
||||
if (cutscene_lasttextwrite == ltw)
|
||||
return 1; // singletics prevention
|
||||
cutscene_lasttextwrite = ltw;
|
||||
|
||||
if (cutscene_boostspeed)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue