]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix a few typos in comments
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 24 Jan 2007 14:21:05 +0000 (14:21 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 24 Jan 2007 14:21:05 +0000 (14:21 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6748 d7cf8633-e32d-0410-b094-e92efae38249

csprogs.c
world.c
world_cs.c

index 19aef18887107905251f0ada2bf5c6d0c00e8974..45f164935e4f97fecfef8c62037fb2fe394a1d1d 100644 (file)
--- a/csprogs.c
+++ b/csprogs.c
@@ -20,7 +20,7 @@ static prvm_prog_t *csqc_tmpprog;
 #define CL_F_SHUTDOWN                  "CSQC_Shutdown"
 
 //[515]: these are optional
-#define CL_F_PARSE_TEMPENTITY  "CSQC_Parse_TempEntity" //[515]: very helpfull when you want to create your own particles/decals/etc for effects that allready exist
+#define CL_F_PARSE_TEMPENTITY  "CSQC_Parse_TempEntity" //[515]: very helpfull when you want to create your own particles/decals/etc for effects that already exist
 #define CL_F_PARSE_STUFFCMD            "CSQC_Parse_StuffCmd"
 #define CL_F_PARSE_PRINT               "CSQC_Parse_Print"
 #define CL_F_PARSE_CENTERPRINT "CSQC_Parse_CenterPrint"
diff --git a/world.c b/world.c
index cf2b2d00e69ab4c4017b9dcbf5b9dabb27c745fd..b87da566b0e798a5e869b5126039d5bab8ba5a64 100644 (file)
--- a/world.c
+++ b/world.c
@@ -643,7 +643,7 @@ trace_t SV_Move(const vec3_t start, const vec3_t mins, const vec3_t maxs, const
        // precalculate passedict's owner edict pointer for comparisons
        traceowner = passedict ? PRVM_PROG_TO_EDICT(passedict->fields.server->owner) : 0;
 
-       // clip to enttiies
+       // clip to entities
        numtouchedicts = SV_EntitiesInBox(clipboxmins, clipboxmaxs, MAX_EDICTS, touchedicts);
        if (numtouchedicts > MAX_EDICTS)
        {
index 97a65f247857dbd1f38d5451069d6711329616a4..9dfaffcaf7c48cb00c3aa1ca92f0788484e00036 100644 (file)
@@ -634,7 +634,7 @@ trace_t CSSV_Move(const vec3_t start, const vec3_t mins, const vec3_t maxs, cons
        // precalculate passedict's owner edict pointer for comparisons
        traceowner = passedict ? PRVM_PROG_TO_EDICT(passedict->fields.client->owner) : 0;
 
-       // clip to enttiies
+       // clip to entities
        numtouchedicts = CSSV_EntitiesInBox(clipboxmins, clipboxmaxs, MAX_EDICTS, touchedicts);
        if (numtouchedicts > MAX_EDICTS)
        {