mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-16 00:52:30 +00:00
End of the world commit
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@312 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
73b95ba2f1
commit
95c62ee9c6
5 changed files with 14 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
# GNU Makefile for QuakeSpasm unix targets, June 21, 2010
|
# 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 DEBUG=1" builds debug client
|
||||||
# "make SDLNET=1" to enable SDL_net. otherwise the socket api will be
|
# "make SDLNET=1" to enable SDL_net. otherwise the socket api will be
|
||||||
# used directly.
|
# used directly.
|
||||||
|
|
|
@ -1288,7 +1288,7 @@ void Host_Say(qboolean teamonly)
|
||||||
client_t *save;
|
client_t *save;
|
||||||
int j, remquot = 0;
|
int j, remquot = 0;
|
||||||
const char *p;
|
const char *p;
|
||||||
// removed unsigned keyword -- kristian
|
// removed unsigned keyword -- kristian
|
||||||
char text[MAXCMDLINE];
|
char text[MAXCMDLINE];
|
||||||
qboolean fromServer = false;
|
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
|
j = sizeof(text) - 2 - Q_strlen(text); // -2 for /n and null terminator
|
||||||
strncat (text, p, j);
|
strncat (text, p, j);
|
||||||
if (remquot)
|
j = Q_strlen(text) - 1;
|
||||||
text[Q_strlen(text) - 1] = '\0';
|
if (remquot && text[j] == '"')
|
||||||
|
text[j] = '\0';
|
||||||
strcat (text, "\n");
|
strcat (text, "\n");
|
||||||
|
|
||||||
for (j = 0, client = svs.clients; j < svs.maxclients; j++, client++)
|
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
|
// check length & truncate if necessary
|
||||||
j = sizeof(text) - 2 - Q_strlen(text); // -2 for /n and null terminator
|
j = sizeof(text) - 2 - Q_strlen(text); // -2 for /n and null terminator
|
||||||
strncat (text, p, j);
|
strncat (text, p, j);
|
||||||
if (remquot)
|
j = Q_strlen(text) - 1;
|
||||||
text[Q_strlen(text) - 1] = '\0';
|
if (remquot && text[j] == '"')
|
||||||
|
text[j] = '\0';
|
||||||
strcat (text, "\n");
|
strcat (text, "\n");
|
||||||
|
|
||||||
save = host_client;
|
save = host_client;
|
||||||
|
|
|
@ -76,7 +76,7 @@ It includes 64bit CPU cupport, a new sound driver, several networking fixes, and
|
||||||
</LI>
|
</LI>
|
||||||
<LI>There is currently no music volume support. cd_sdl.c needs replacing with cd_linux.c, cd_bsd.c etc..
|
<LI>There is currently no music volume support. cd_sdl.c needs replacing with cd_linux.c, cd_bsd.c etc..
|
||||||
</LI>
|
</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>
|
</LI>
|
||||||
</UL>
|
</UL>
|
||||||
</P>
|
</P>
|
||||||
|
@ -90,7 +90,7 @@ It includes 64bit CPU cupport, a new sound driver, several networking fixes, and
|
||||||
<PRE>
|
<PRE>
|
||||||
cd quakespasm-0.85.3
|
cd quakespasm-0.85.3
|
||||||
make
|
make
|
||||||
cp quakespasm /usr/local/games/quake (for eg)
|
cp quakespasm /usr/local/games/quake (for example)
|
||||||
</PRE>
|
</PRE>
|
||||||
<HR>
|
<HR>
|
||||||
<BR>
|
<BR>
|
||||||
|
|
|
@ -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>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>
|
</itemize>
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ Just extract the source tarball, then
|
||||||
<code>
|
<code>
|
||||||
cd quakespasm-0.85.3
|
cd quakespasm-0.85.3
|
||||||
make
|
make
|
||||||
cp quakespasm /usr/local/games/quake (for eg)
|
cp quakespasm /usr/local/games/quake (for example)
|
||||||
</code>
|
</code>
|
||||||
<newline>
|
<newline>
|
||||||
Compile time options include
|
Compile time options include
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
replacing with cd_linux.c, cd_bsd.c etc..
|
replacing with cd_linux.c, cd_bsd.c etc..
|
||||||
|
|
||||||
o In windows, alternative CD drives are accessible by "quakespasm
|
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
|
Visit the FitzQuake Homepage <http://www.celephais.net/fitzquake> for
|
||||||
a full run-down of this engine's features.
|
a full run-down of this engine's features.
|
||||||
|
@ -77,7 +77,7 @@
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
cd quakespasm-0.85.3
|
cd quakespasm-0.85.3
|
||||||
make
|
make
|
||||||
cp quakespasm /usr/local/games/quake (for eg)
|
cp quakespasm /usr/local/games/quake (for example)
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue