@@ -1615,45 +1615,37 @@ qboolean wasInMenus;
1615
1615
char * quitMessage [] =
1616
1616
{
1617
1617
/* .........1.........2.... */
1618
- " Are you gonna quit " ,
1619
- " this game just like " ,
1620
- " everything else? " ,
1621
- " " ,
1622
-
1623
- " Milord, methinks that " ,
1624
- " thou art a lowly " ,
1625
- " quitter. Is this true? " ,
1626
- " " ,
1627
-
1628
- " Do I need to bust your " ,
1629
- " face open for trying " ,
1630
- " to quit? " ,
1631
- " " ,
1632
-
1633
- " Man, I oughta smack you" ,
1634
- " for trying to quit! " ,
1635
- " Press Y to get " ,
1636
- " smacked out. " ,
1637
-
1638
- " Press Y to quit like a " ,
1639
- " big loser in life. " ,
1640
- " Press N to stay proud " ,
1641
- " and successful! " ,
1642
-
1643
- " If you press Y to " ,
1644
- " quit, I will summon " ,
1645
- " Satan all over your " ,
1646
- " hard drive! " ,
1647
-
1648
- " Um, Asmodeus dislikes " ,
1649
- " his children trying to " ,
1650
- " quit. Press Y to return" ,
1651
- " to your Tinkertoys. " ,
1652
-
1653
- " If you quit now, I'll " ,
1654
- " throw a blanket-party " ,
1655
- " for you next time! " ,
1656
- " "
1618
+ " Are you gonna quit this game " ,
1619
+ " just like everything else? (Y/N) " ,
1620
+ " " ,
1621
+
1622
+ " Milord, methinks that thou art a " ,
1623
+ " lowly quitter. Is this true? (Y/N) " ,
1624
+ " " ,
1625
+
1626
+ " Do I need to bust your face open " ,
1627
+ " for trying to quit? (Y/N) " ,
1628
+ " " ,
1629
+
1630
+ " Man, I oughta smack you for trying to " ,
1631
+ " quit! Press (Y) to get smacked out. " ,
1632
+ " Press (N) to decline. " ,
1633
+
1634
+ " Press (Y) to quit like a big loser in " ,
1635
+ " life. Press (N) to stay proud and " ,
1636
+ " successful! " ,
1637
+
1638
+ "If you press (Y) to quit, I will summon" ,
1639
+ " Satan all over your hard drive! " ,
1640
+ " Press (N) to return. " ,
1641
+
1642
+ " Um, Asmodeus dislikes his children " ,
1643
+ "trying to quit. Press (Y) to return to " ,
1644
+ " your Tinkertoys. Press (N) to stay. " ,
1645
+
1646
+ " If you quit now (Y), I'll throw a " ,
1647
+ " blanket-party for you next time! " ,
1648
+ " press (N) to return. " ,
1657
1649
};
1658
1650
1659
1651
void M_Menu_Quit_f (void )
@@ -1738,11 +1730,9 @@ void M_Quit_Draw (void) //johnfitz -- modified for new quit message
1738
1730
m_state = m_quit ;
1739
1731
}
1740
1732
1741
- M_DrawTextBox (56 , 76 , 24 , 4 );
1742
- M_Print (64 , 84 , quitMessage [msgNumber * 4 + 0 ]);
1743
- M_Print (64 , 92 , quitMessage [msgNumber * 4 + 1 ]);
1744
- M_Print (64 , 100 , quitMessage [msgNumber * 4 + 2 ]);
1745
- M_Print (64 , 108 , quitMessage [msgNumber * 4 + 3 ]);
1733
+ M_PrintWhite (12 , 156 , quitMessage [msgNumber * 3 ]);
1734
+ M_PrintWhite (12 , 168 , quitMessage [msgNumber * 3 + 1 ]);
1735
+ M_PrintWhite (12 , 180 , quitMessage [msgNumber * 3 + 2 ]);
1746
1736
}
1747
1737
1748
1738
//=============================================================================
0 commit comments