Skip to content

Commit

Permalink
Update m_menu.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Radicalicious committed Jan 17, 2025
1 parent 2dd5f66 commit 60bd152
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -14417,6 +14417,28 @@ static INT32 quitsounds[] =
sfx_chchng // Tails 11-09-99
};

const char *QuitScreenMessages[3] = {
"Design and content in\n"
"SRB2 is copyright\n"
"1998-2025 by STJr. All\n"
"original material in\n"
"this game is copyrighted\n"
"by their respective\n"
"owners, and no copyright\n"
"infringement is\n"
"intended. STJr's staff\n"
"make no profit\n"
"whatsoever (in\n"
"fact, we lose\n"
"money).\n"
,

"THIS GAME SHOULD NOT BE SOLD!",

"STJr is in no way affiliated\n"
"with SEGA or Sonic Team.\n"
};

void M_QuitResponse(INT32 ch)
{
tic_t ptime;
Expand All @@ -14438,6 +14460,9 @@ void M_QuitResponse(INT32 ch)
while (ptime > I_GetTime())
{
V_DrawScaledPatch(0, 0, 0, W_CachePatchName("GAMEQUIT", PU_PATCH)); // Demo 3 Quit Screen Tails 06-16-2001
V_DrawCenteredString(2+(V_StringWidth(QuitScreenMessages[0], V_ALLOWLOWERCASE)/2), 4, V_ALLOWLOWERCASE, QuitScreenMessages[0]);
V_DrawCenteredString(160, 166, V_ALLOWLOWERCASE|V_REDMAP, QuitScreenMessages[1]);
V_DrawCenteredString(160, 176, V_ALLOWLOWERCASE, QuitScreenMessages[2]);
I_FinishUpdate(); // Update the screen with the image Tails 06-19-2001
I_Sleep(cv_sleep.value);
I_UpdateTime(cv_timescale.value);
Expand Down

0 comments on commit 60bd152

Please sign in to comment.