From 36a4e54b56c4dbcba1c4e2fa8de3c3224c99a2a2 Mon Sep 17 00:00:00 2001 From: terminx Date: Fri, 6 Jun 2008 01:06:43 +0000 Subject: [PATCH] git-svn-id: https://svn.eduke32.com/eduke32@771 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/build/src/build.c | 9 ++++++--- polymer/eduke32/source/astub.c | 8 ++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/polymer/build/src/build.c b/polymer/build/src/build.c index acdb29752..69b536a11 100644 --- a/polymer/build/src/build.c +++ b/polymer/build/src/build.c @@ -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); diff --git a/polymer/eduke32/source/astub.c b/polymer/eduke32/source/astub.c index cdc31ff3e..d329f0d29 100644 --- a/polymer/eduke32/source/astub.c +++ b/polymer/eduke32/source/astub.c @@ -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];