mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: Hexen's chess ending should never use the cluster's endtext.
SVN r3091 (trunk)
This commit is contained in:
parent
37658cb4f7
commit
5ddd2ecffa
2 changed files with 3 additions and 1 deletions
|
@ -810,7 +810,8 @@ void F_StartFinale (const char *music, int musicorder, int cdtrack, unsigned int
|
|||
const char *text, INTBOOL textInLump, INTBOOL finalePic, INTBOOL lookupText,
|
||||
bool ending, FName endsequence)
|
||||
{
|
||||
if (text != NULL && *text != 0)
|
||||
// Hexen's chess ending doesn't have a text screen, even if the cluster has a message defined.
|
||||
if (text != NULL && *text != 0 && endsequence != NAME_Inter_Chess)
|
||||
{
|
||||
FIntermissionActionTextscreen *textscreen = new FIntermissionActionTextscreen;
|
||||
if (textInLump)
|
||||
|
|
|
@ -529,6 +529,7 @@ xx(res_9)
|
|||
xx(AlwaysRun)
|
||||
|
||||
// end sequences
|
||||
xx(Inter_Chess)
|
||||
xx(Inter_Strife)
|
||||
xx(Inter_Strife_Good)
|
||||
xx(Inter_Strife_Sad)
|
||||
|
|
Loading…
Reference in a new issue