Formatted the source in non DOS format.

This commit is contained in:
Richard Allen 2002-01-11 19:48:33 +00:00
parent 84a8457ba5
commit 7ea950aa1b
160 changed files with 477 additions and 42 deletions

View file

@ -11,7 +11,7 @@ behavior. So...if you want FF in teamplay, set your dmflags to 0. If you
don't, set it to 256. No friendly fire is the "normal" style of play, so
the default/standard dmflags for AQ teamplay should be considered to be
256. When FF is in effect, notification of it will be on the standard
MOTD. Temporary banning for people who kill too many team members is
OTD. Temporary banning for people who kill too many team members is
available. The "maxteamkills" server cvar can be used to control the
maximum number of teamkills that a player can make on a given map before
he is kicked and temporarily banned, the default is 0 which means never
@ -112,7 +112,7 @@ real this time), as well as the red flash when a player exits the game in
a teamplay game.
o The through-eyes chasecam now properly tracks weapon kick (ie with the
M4), and also now gives you IR vision if the person you're viewing through
4), and also now gives you IR vision if the person you're viewing through
the eyes of is using IR.
o A few bugs fixed in the way bodies fly after death. Floating bodies and
@ -244,7 +244,7 @@ General Weapon Changes
o Ducking alone (without lasersight) now improves aim. Previously, it only
helped if you had a lasersight too (we believe this was a bug). See "Spread
Modifiers" heading for more specific information.
odifiers" heading for more specific information.
o Guns now center their fire around your crosshair, rather than an invisible
spot down/right of your crosshair.

View file

@ -188,23 +188,23 @@ WEAPON/ITEM NAMES
These are the exact names of all the weapons/items in the game, for use with
commands like "use", "drop", "choose", "give", etc:
MK23 Pistol
M3 Super 90 Assault Shotgun
MP5/10 Submachinegun
K23 Pistol
3 Super 90 Assault Shotgun
P5/10 Submachinegun
Handcannon
Sniper Rifle
M4 Assault Rifle
4 Assault Rifle
Dual MK23 Pistols
Combat Knife (also aliases "throwing combat knife" and
"slashing combat knife" for the "use" command)
Pistol Clip
12 Gauge Shells
Machinegun Magazine
M4 Clip
achinegun Magazine
4 Clip
AP Sniper Ammo
M26 Fragmentation Grenade
26 Fragmentation Grenade
Kevlar Vest
Lasersight

View file

@ -66,7 +66,7 @@ void AI_SetSightClient (void)
=============
ai_move
Move the specified distance at current facing.
ove the specified distance at current facing.
This replaces the QC functions: ai_forward, ai_back, ai_pain, and ai_painforward
==============
*/

View file

@ -181,18 +181,18 @@ typedef enum
// edict->movetype values
typedef enum
{
MOVETYPE_NONE, // never moves
MOVETYPE_NOCLIP, // origin and angles change with no interaction
MOVETYPE_PUSH, // no clip to world, push on box contact
MOVETYPE_STOP, // no clip to world, stops on box contact
OVETYPE_NONE, // never moves
OVETYPE_NOCLIP, // origin and angles change with no interaction
OVETYPE_PUSH, // no clip to world, push on box contact
OVETYPE_STOP, // no clip to world, stops on box contact
MOVETYPE_WALK, // gravity
MOVETYPE_STEP, // gravity, special edge handling
MOVETYPE_FLY,
MOVETYPE_TOSS, // gravity
MOVETYPE_FLYMISSILE, // extra size to monsters
MOVETYPE_BOUNCE,
MOVETYPE_BLOOD
OVETYPE_WALK, // gravity
OVETYPE_STEP, // gravity, special edge handling
OVETYPE_FLY,
OVETYPE_TOSS, // gravity
OVETYPE_FLYMISSILE, // extra size to monsters
OVETYPE_BOUNCE,
OVETYPE_BLOOD
} movetype_t;

View file

@ -33,7 +33,7 @@ void SP_func_areaportal (edict_t *ent)
/*
=================
Misc functions
isc functions
=================
*/
void VelocityForDamage (int damage, vec3_t v)
@ -390,7 +390,7 @@ void SP_path_corner (edict_t *self)
/*QUAKED point_combat (0.5 0.3 0) (-8 -8 -8) (8 8 8) Hold
Makes this the target of a monster and it will head here
akes this the target of a monster and it will head here
when first activated before going after the activator. If
hold is selected, it will stay here.
*/

View file

@ -901,7 +901,7 @@ STEPPING MOVEMENT
=============
SV_Physics_Step
Monsters freefall when they don't have a ground entity, otherwise
onsters freefall when they don't have a ground entity, otherwise
all movement is done with discrete steps.
This is also used for objects that have become still on the ground, but

View file

@ -34,7 +34,7 @@ void SP_target_temp_entity (edict_t *ent)
Normal sounds play each time the target is used. The reliable flag can be set for crucial voiceovers.
Looped sounds are always atten 3 / vol 1, and the use function toggles it on/off.
Multiple identical looping sounds will just increase volume without any speed cost.
ultiple identical looping sounds will just increase volume without any speed cost.
*/
void Use_Target_Speaker (edict_t *ent, edict_t *other, edict_t *activator)
{

View file

@ -234,7 +234,7 @@ void SP_turret_breach (edict_t *self)
/*QUAKED turret_base (0 0 0) ?
This portion of the turret changes yaw only.
MUST be teamed with a turret_breach.
UST be teamed with a turret_breach.
*/
void SP_turret_base (edict_t *self)
@ -248,7 +248,7 @@ void SP_turret_base (edict_t *self)
/*QUAKED turret_driver (1 .5 0) (-16 -16 -24) (16 16 32)
Must NOT be on the team with the rest of the turret parts.
ust NOT be on the team with the rest of the turret parts.
Instead it must target the turret_breach.
*/

View file

@ -432,7 +432,7 @@ edict_t *G_Spawn (void)
=================
G_FreeEdict
Marks the edict as free
arks the edict as free
=================
*/
void G_FreeEdict (edict_t *ed)

View file

@ -6,7 +6,7 @@
/*
=============
M_CheckBottom
_CheckBottom
Returns false if any part of the bottom of the entity is off an edge that
is not a staircase.
@ -278,7 +278,7 @@ qboolean SV_movestep (edict_t *ent, vec3_t move, qboolean relink)
/*
===============
M_ChangeYaw
_ChangeYaw
===============
*/
@ -490,7 +490,7 @@ qboolean SV_CloseEnough (edict_t *ent, edict_t *goal, float dist)
/*
======================
M_MoveToGoal
_MoveToGoal
======================
*/
void M_MoveToGoal (edict_t *ent, float dist)
@ -517,7 +517,7 @@ void M_MoveToGoal (edict_t *ent, float dist)
/*
===============
M_walkmove
_walkmove
===============
*/
qboolean M_walkmove (edict_t *ent, float yaw, float dist)

View file

@ -682,7 +682,7 @@ void Think_Weapon (edict_t *ent)
================
Use_Weapon
Make the weapon ready if there is ammo
ake the weapon ready if there is ammo
================
*/
void Use_Weapon (edict_t *ent, gitem_t *item)
@ -2373,7 +2373,7 @@ void Weapon_HyperBlaster (edict_t *ent)
/*
======================================================================
MACHINEGUN / CHAINGUN
ACHINEGUN / CHAINGUN
======================================================================
*/

View file

@ -90,19 +90,19 @@ typedef enum {false, true} qboolean;
// destination class for gi.multicast()
typedef enum
{
MULTICAST_ALL,
MULTICAST_PHS,
MULTICAST_PVS,
MULTICAST_ALL_R,
MULTICAST_PHS_R,
MULTICAST_PVS_R
ULTICAST_ALL,
ULTICAST_PHS,
ULTICAST_PVS,
ULTICAST_ALL_R,
ULTICAST_PHS_R,
ULTICAST_PVS_R
} multicast_t;
/*
==============================================================
MATHLIB
ATHLIB
==============================================================
*/

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.22 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.21 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.18 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.17 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.7 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.6 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.18 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.17 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.17 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.16 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.32 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.31 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.10 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.9 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.38 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.37 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.34 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.33 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.14 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.13 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.16 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.15 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.11 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.10 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.13 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.12 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.16 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.15 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.45 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.44 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

Binary file not shown.

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:41 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.26 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.25 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.53 2002/01/11 19:48:29 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.52 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.42 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.41 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.7 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.6 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.41 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.40 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.24 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.23 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.38 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.37 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.34 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.33 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.28 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.27 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.33 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.32 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.15 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.14 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.18 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.17 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.20 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.19 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.18 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.17 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.7 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.6 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.6 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.5 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.7 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.6 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.7 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.6 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.33 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.32 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.7 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.6 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.4 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.3 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.5 2002/01/11 19:48:30 jbravo
// Formatted the source in non DOS format.
//
// Revision 1.4 2001/12/31 16:28:42 jbravo
// I made a Booboo with the Log tag.
//

Some files were not shown because too many files have changed in this diff Show more