Skip to content

Commit 560fabf

Browse files
committed
In the Change Sequence menu, Capped the Sequence at 405 instead of 406
Also removed the string that was used for value 406.
1 parent a8b46b6 commit 560fabf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

ttyd-tools/rel/source/global.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,6 @@ const char *CheatsEventNames[] =
475475
"Epilogue",
476476
"End Credits",
477477
"Return to Rogueport",
478-
"Rogueport",
479478
};
480479
#endif
481480

ttyd-tools/rel/source/menufunctions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3536,7 +3536,7 @@ void *initStageEvents()
35363536
bool getStageString(char *stageNameBuffer, uint32_t sequencePosition)
35373537
{
35383538
// Make sure the Sequence value is valid
3539-
if (sequencePosition > 406)
3539+
if (sequencePosition > 405)
35403540
{
35413541
return false;
35423542
}
@@ -3547,7 +3547,7 @@ bool getStageString(char *stageNameBuffer, uint32_t sequencePosition)
35473547
return true;
35483548
}
35493549

3550-
if ((sequencePosition >= 403) && (sequencePosition <= 406))
3550+
if ((sequencePosition >= 403) && (sequencePosition <= 405))
35513551
{
35523552
strcpy(stageNameBuffer, "Ending");
35533553
return true;

0 commit comments

Comments
 (0)