mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@771 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
72e0302353
commit
36a4e54b56
2 changed files with 10 additions and 7 deletions
|
@ -6037,7 +6037,9 @@ CANCEL:
|
||||||
bflushchars();
|
bflushchars();
|
||||||
while (bad == 0)
|
while (bad == 0)
|
||||||
{
|
{
|
||||||
Bsprintf(buffer,"Save as: %s_", boardfilename);
|
Bsprintf(buffer,"Save as: ^011%s", boardfilename);
|
||||||
|
if (totalclock & 32)
|
||||||
|
Bstrcat(buffer,"_");
|
||||||
printmessage16(buffer);
|
printmessage16(buffer);
|
||||||
showframe(1);
|
showframe(1);
|
||||||
|
|
||||||
|
@ -6058,7 +6060,7 @@ CANCEL:
|
||||||
i--;
|
i--;
|
||||||
boardfilename[i] = 0;
|
boardfilename[i] = 0;
|
||||||
}
|
}
|
||||||
else if (i < 8 && ch > 32 && ch < 128)
|
else if (i < 32 && ch > 32 && ch < 128)
|
||||||
{
|
{
|
||||||
boardfilename[i++] = ch;
|
boardfilename[i++] = ch;
|
||||||
boardfilename[i] = 0;
|
boardfilename[i] = 0;
|
||||||
|
@ -6784,7 +6786,8 @@ int getnumber256(char namestart[80], int num, int maxnumber, char sign)
|
||||||
|
|
||||||
ch = bgetchar();
|
ch = bgetchar();
|
||||||
|
|
||||||
Bsprintf(buffer,"%s%d_ ",namestart,danum);
|
Bsprintf(buffer,"%s%d",namestart,danum);
|
||||||
|
if (totalclock & 32) Bstrcat(buffer,"_ ");
|
||||||
printmessage256(buffer);
|
printmessage256(buffer);
|
||||||
showframe(1);
|
showframe(1);
|
||||||
|
|
||||||
|
|
|
@ -7783,7 +7783,7 @@ void ExtPreCheckKeys(void) // just before drawrooms
|
||||||
wall[w].pal = sprite[i].pal;
|
wall[w].pal = sprite[i].pal;
|
||||||
wallflag[w] = 1;
|
wallflag[w] = 1;
|
||||||
}
|
}
|
||||||
if (wall[w].nextwall >= 0)
|
/* if (wall[w].nextwall >= 0)
|
||||||
{
|
{
|
||||||
if (!wallflag[wall[w].nextwall])
|
if (!wallflag[wall[w].nextwall])
|
||||||
{
|
{
|
||||||
|
@ -7793,7 +7793,7 @@ void ExtPreCheckKeys(void) // just before drawrooms
|
||||||
wall[wall[w].nextwall].pal = sprite[i].pal;
|
wall[wall[w].nextwall].pal = sprite[i].pal;
|
||||||
wallflag[wall[w].nextwall] = 1;
|
wallflag[wall[w].nextwall] = 1;
|
||||||
}
|
}
|
||||||
}
|
} */
|
||||||
}
|
}
|
||||||
sectorshades[sprite[i].sectnum][0] = sector[sprite[i].sectnum].floorshade;
|
sectorshades[sprite[i].sectnum][0] = sector[sprite[i].sectnum].floorshade;
|
||||||
sectorshades[sprite[i].sectnum][1] = sector[sprite[i].sectnum].ceilingshade;
|
sectorshades[sprite[i].sectnum][1] = sector[sprite[i].sectnum].ceilingshade;
|
||||||
|
@ -8175,7 +8175,7 @@ void ExtCheckKeys(void)
|
||||||
wall[w].pal = wallpals[w];
|
wall[w].pal = wallpals[w];
|
||||||
wallflag[w] = 0;
|
wallflag[w] = 0;
|
||||||
}
|
}
|
||||||
if (wall[w].nextwall >= 0)
|
/* if (wall[w].nextwall >= 0)
|
||||||
{
|
{
|
||||||
if (wallflag[wall[w].nextwall])
|
if (wallflag[wall[w].nextwall])
|
||||||
{
|
{
|
||||||
|
@ -8183,7 +8183,7 @@ void ExtCheckKeys(void)
|
||||||
wall[wall[w].nextwall].pal = wallpals[wall[w].nextwall];
|
wall[wall[w].nextwall].pal = wallpals[wall[w].nextwall];
|
||||||
wallflag[wall[w].nextwall] = 0;
|
wallflag[wall[w].nextwall] = 0;
|
||||||
}
|
}
|
||||||
}
|
} */
|
||||||
}
|
}
|
||||||
sector[sprite[i].sectnum].floorshade = sectorshades[sprite[i].sectnum][0];
|
sector[sprite[i].sectnum].floorshade = sectorshades[sprite[i].sectnum][0];
|
||||||
sector[sprite[i].sectnum].ceilingshade = sectorshades[sprite[i].sectnum][1];
|
sector[sprite[i].sectnum].ceilingshade = sectorshades[sprite[i].sectnum][1];
|
||||||
|
|
Loading…
Reference in a new issue