End of the world commit

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@312 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Steven 2010-08-29 21:37:07 +00:00
parent a122c93815
commit dd590862a0
5 changed files with 14 additions and 12 deletions

View file

@ -1,6 +1,6 @@
# GNU Makefile for QuakeSpasm unix targets, June 21, 2010
#
# You need SDL and SDL_net fully installed.
# You need SDL (and optionally SDL_net) fully installed.
# "make DEBUG=1" builds debug client
# "make SDLNET=1" to enable SDL_net. otherwise the socket api will be
# used directly.

View file

@ -1288,7 +1288,7 @@ void Host_Say(qboolean teamonly)
client_t *save;
int j, remquot = 0;
const char *p;
// removed unsigned keyword -- kristian
// removed unsigned keyword -- kristian
char text[MAXCMDLINE];
qboolean fromServer = false;
@ -1327,8 +1327,9 @@ void Host_Say(qboolean teamonly)
j = sizeof(text) - 2 - Q_strlen(text); // -2 for /n and null terminator
strncat (text, p, j);
if (remquot)
text[Q_strlen(text) - 1] = '\0';
j = Q_strlen(text) - 1;
if (remquot && text[j] == '"')
text[j] = '\0';
strcat (text, "\n");
for (j = 0, client = svs.clients; j < svs.maxclients; j++, client++)
@ -1390,8 +1391,9 @@ void Host_Tell_f(void)
// check length & truncate if necessary
j = sizeof(text) - 2 - Q_strlen(text); // -2 for /n and null terminator
strncat (text, p, j);
if (remquot)
text[Q_strlen(text) - 1] = '\0';
j = Q_strlen(text) - 1;
if (remquot && text[j] == '"')
text[j] = '\0';
strcat (text, "\n");
save = host_client;

View file

@ -76,7 +76,7 @@ It includes 64bit CPU cupport, a new sound driver, several networking fixes, and
</LI>
<LI>There is currently no music volume support. cd_sdl.c needs replacing with cd_linux.c, cd_bsd.c etc..
</LI>
<LI>In windows, alternative CD drives are accessible by "<B>quakespasm -cddev F:\</B>" (for example)
<LI>In windows, alternative CD drives are accessible by "<B>quakespasm -cddev F</B>" (for example)
</LI>
</UL>
</P>
@ -90,7 +90,7 @@ It includes 64bit CPU cupport, a new sound driver, several networking fixes, and
<PRE>
cd quakespasm-0.85.3
make
cp quakespasm /usr/local/games/quake (for eg)
cp quakespasm /usr/local/games/quake (for example)
</PRE>
<HR>
<BR>

View file

@ -39,7 +39,7 @@ It includes 64bit CPU cupport, a new sound driver, several networking fixes, and
<item>There is currently no music volume support. cd_sdl.c needs replacing with cd_linux.c, cd_bsd.c etc..
<item>In windows, alternative CD drives are accessible by "<bf>quakespasm -cddev F:\</bf>" (for example)
<item>In windows, alternative CD drives are accessible by "<bf>quakespasm -cddev F</bf>" (for example)
</itemize>
@ -50,7 +50,7 @@ Just extract the source tarball, then
<code>
cd quakespasm-0.85.3
make
cp quakespasm /usr/local/games/quake (for eg)
cp quakespasm /usr/local/games/quake (for example)
</code>
<newline>
Compile time options include

View file

@ -64,7 +64,7 @@
replacing with cd_linux.c, cd_bsd.c etc..
o In windows, alternative CD drives are accessible by "quakespasm
-cddev F:\" (for example)
-cddev F" (for example)
Visit the FitzQuake Homepage <http://www.celephais.net/fitzquake> for
a full run-down of this engine's features.
@ -77,7 +77,7 @@
______________________________________________________________________
cd quakespasm-0.85.3
make
cp quakespasm /usr/local/games/quake (for eg)
cp quakespasm /usr/local/games/quake (for example)
______________________________________________________________________