git-svn-id: https://svn.eduke32.com/eduke32@771 1a8010ca-5511-0410-912e-c29ae57300e0

This commit is contained in:
terminx 2008-06-06 01:06:43 +00:00
parent 72e0302353
commit 36a4e54b56
2 changed files with 10 additions and 7 deletions

View file

@ -6037,7 +6037,9 @@ CANCEL:
bflushchars();
while (bad == 0)
{
Bsprintf(buffer,"Save as: %s_", boardfilename);
Bsprintf(buffer,"Save as: ^011%s", boardfilename);
if (totalclock & 32)
Bstrcat(buffer,"_");
printmessage16(buffer);
showframe(1);
@ -6058,7 +6060,7 @@ CANCEL:
i--;
boardfilename[i] = 0;
}
else if (i < 8 && ch > 32 && ch < 128)
else if (i < 32 && ch > 32 && ch < 128)
{
boardfilename[i++] = ch;
boardfilename[i] = 0;
@ -6784,7 +6786,8 @@ int getnumber256(char namestart[80], int num, int maxnumber, char sign)
ch = bgetchar();
Bsprintf(buffer,"%s%d_ ",namestart,danum);
Bsprintf(buffer,"%s%d",namestart,danum);
if (totalclock & 32) Bstrcat(buffer,"_ ");
printmessage256(buffer);
showframe(1);

View file

@ -7783,7 +7783,7 @@ void ExtPreCheckKeys(void) // just before drawrooms
wall[w].pal = sprite[i].pal;
wallflag[w] = 1;
}
if (wall[w].nextwall >= 0)
/* if (wall[w].nextwall >= 0)
{
if (!wallflag[wall[w].nextwall])
{
@ -7793,7 +7793,7 @@ void ExtPreCheckKeys(void) // just before drawrooms
wall[wall[w].nextwall].pal = sprite[i].pal;
wallflag[wall[w].nextwall] = 1;
}
}
} */
}
sectorshades[sprite[i].sectnum][0] = sector[sprite[i].sectnum].floorshade;
sectorshades[sprite[i].sectnum][1] = sector[sprite[i].sectnum].ceilingshade;
@ -8175,7 +8175,7 @@ void ExtCheckKeys(void)
wall[w].pal = wallpals[w];
wallflag[w] = 0;
}
if (wall[w].nextwall >= 0)
/* if (wall[w].nextwall >= 0)
{
if (wallflag[wall[w].nextwall])
{
@ -8183,7 +8183,7 @@ void ExtCheckKeys(void)
wall[wall[w].nextwall].pal = wallpals[wall[w].nextwall];
wallflag[wall[w].nextwall] = 0;
}
}
} */
}
sector[sprite[i].sectnum].floorshade = sectorshades[sprite[i].sectnum][0];
sector[sprite[i].sectnum].ceilingshade = sectorshades[sprite[i].sectnum][1];