mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@318 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
eac09688bc
commit
3584d01dcc
2 changed files with 9 additions and 7 deletions
|
@ -2226,8 +2226,8 @@ void FTA(short q,struct player_struct *p)
|
|||
|
||||
p->fta = 100;
|
||||
|
||||
if( p->ftq != q || q == 26 )
|
||||
// || q == 26 || q == 115 || q ==116 || q == 117 || q == 122 )
|
||||
// if( p->ftq != q || q == 26 )
|
||||
// || q == 26 || q == 115 || q ==116 || q == 117 || q == 122 )
|
||||
{
|
||||
p->ftq = q;
|
||||
pub = NUMPAGES;
|
||||
|
|
|
@ -1579,7 +1579,8 @@ void menus(void)
|
|||
break;
|
||||
case 993: // JBF 20031220
|
||||
rotatesprite(160<<16,200<<15,65536L,0,MENUSCREEN,0,0,10+64,0,0,xdim-1,ydim-1);
|
||||
menutext(160,28,0,0,"ABOUT EDUKE32");
|
||||
rotatesprite(c<<16,19<<16,65536L,0,MENUBAR,0,0,10,0,0,xdim-1,ydim-1);
|
||||
menutext(160,24,0,0,"ABOUT EDUKE32");
|
||||
|
||||
cheat_for_port_credits:
|
||||
if (conversion == 13) l = (-2);
|
||||
|
@ -1595,7 +1596,7 @@ cheat_for_port_credits:
|
|||
|
||||
gametext(160,76-l,"ORIGINAL \"POLYMOST\" RENDERER",0,2+8+16);
|
||||
gametext(160,76+8-l,"NETWORKING, OTHER CODE",0,2+8+16);
|
||||
p = "Ken Silverman";
|
||||
p = "Ken \"Awesoken\" Silverman";
|
||||
minitext(161-(Bstrlen(p)<<1), 77+8+10-l, p, 4, 10+16+128);
|
||||
minitext(160-(Bstrlen(p)<<1), 76+8+10-l, p, 8, 10+16+128);
|
||||
|
||||
|
@ -1604,15 +1605,13 @@ cheat_for_port_credits:
|
|||
minitext(161-(Bstrlen(p)<<1), 104+10-l, p, 4, 10+16+128);
|
||||
minitext(160-(Bstrlen(p)<<1), 103+10-l, p, 8, 10+16+128);
|
||||
|
||||
gametext(160,122-l,"OTHER",0,2+8+16);
|
||||
gametext(160,122-l,"LICENSE AND OTHER CONTRIBUTORS",0,2+8+16);
|
||||
{
|
||||
const char *scroller[] = {
|
||||
"This program is distributed under the terms of the",
|
||||
"GNU General Public License version 2 as published by the",
|
||||
"Free Software Foundation. See GNU.TXT for details.",
|
||||
"",
|
||||
"EDuke originally by Matthew Saettler",
|
||||
"",
|
||||
"Thanks to these people for their input and contributions:",
|
||||
"",
|
||||
"Adam Fazakerley",
|
||||
|
@ -1625,11 +1624,14 @@ cheat_for_port_credits:
|
|||
"Matthew Palmer",
|
||||
"Peter Green",
|
||||
"",
|
||||
"EDuke originally by Matt Saettler",
|
||||
"",
|
||||
"--x--",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
};
|
||||
const int numlines = sizeof(scroller)/sizeof(char *);
|
||||
|
|
Loading…
Reference in a new issue