Skip to content

Commit

Permalink
Fix some typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
UniQP committed Jul 26, 2016
1 parent 1051df4 commit 5eae6de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/game/g_combat.c
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ void G_Damage( gentity_t *targ, gentity_t *inflictor, gentity_t *attacker,
return;
}

// the intermission has allready been qualified for, so don't
// the intermission has already been qualified for, so don't
// allow any extra scoring
if ( level.intermissionQueued ) {
return;
Expand Down
4 changes: 2 additions & 2 deletions code/qcommon/cm_patch.c
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ void CM_AddFacetBevels( facet_t *facet ) {
if (CM_PlaneEqual(&planes[facet->surfacePlane], plane, &flipped)) {
continue;
}
// see if the plane is allready present
// see if the plane is already present
for ( i = 0 ; i < facet->numBorders ; i++ ) {
if (CM_PlaneEqual(&planes[facet->borderPlanes[i]], plane, &flipped))
break;
Expand Down Expand Up @@ -933,7 +933,7 @@ void CM_AddFacetBevels( facet_t *facet ) {
if (CM_PlaneEqual(&planes[facet->surfacePlane], plane, &flipped)) {
continue;
}
// see if the plane is allready present
// see if the plane is already present
for ( i = 0 ; i < facet->numBorders ; i++ ) {
if (CM_PlaneEqual(&planes[facet->borderPlanes[i]], plane, &flipped)) {
break;
Expand Down
2 changes: 1 addition & 1 deletion code/qcommon/files.c
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,7 @@ static int FS_AddFileToList( char *name, char *list[MAX_FOUND_FILES], int nfiles
}
for ( i = 0 ; i < nfiles ; i++ ) {
if ( !Q_stricmp( name, list[i] ) ) {
return nfiles; // allready in list
return nfiles; // already in list
}
}
list[nfiles] = CopyString( name );
Expand Down

0 comments on commit 5eae6de

Please sign in to comment.