mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-03 06:51:11 +00:00
Update m_menu.c
This commit is contained in:
parent
2dd5f664ac
commit
60bd1527de
1 changed files with 25 additions and 0 deletions
25
src/m_menu.c
25
src/m_menu.c
|
@ -14417,6 +14417,28 @@ static INT32 quitsounds[] =
|
||||||
sfx_chchng // Tails 11-09-99
|
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)
|
void M_QuitResponse(INT32 ch)
|
||||||
{
|
{
|
||||||
tic_t ptime;
|
tic_t ptime;
|
||||||
|
@ -14438,6 +14460,9 @@ void M_QuitResponse(INT32 ch)
|
||||||
while (ptime > I_GetTime())
|
while (ptime > I_GetTime())
|
||||||
{
|
{
|
||||||
V_DrawScaledPatch(0, 0, 0, W_CachePatchName("GAMEQUIT", PU_PATCH)); // Demo 3 Quit Screen Tails 06-16-2001
|
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_FinishUpdate(); // Update the screen with the image Tails 06-19-2001
|
||||||
I_Sleep(cv_sleep.value);
|
I_Sleep(cv_sleep.value);
|
||||||
I_UpdateTime(cv_timescale.value);
|
I_UpdateTime(cv_timescale.value);
|
||||||
|
|
Loading…
Reference in a new issue