Skip to content

Commit

Permalink
Fix error message in BG_EvaluateTrajectory
Browse files Browse the repository at this point in the history
  • Loading branch information
ensiform authored and zturtleman committed Jan 14, 2013
1 parent 76f9067 commit 4de32b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/bg_misc.c
Expand Up @@ -1229,7 +1229,7 @@ void BG_EvaluateTrajectory( const trajectory_t *tr, int atTime, vec3_t result )
result[2] -= 0.5 * DEFAULT_GRAVITY * deltaTime * deltaTime; // FIXME: local gravity...
break;
default:
Com_Error( ERR_DROP, "BG_EvaluateTrajectory: unknown trType: %i", tr->trTime );
Com_Error( ERR_DROP, "BG_EvaluateTrajectory: unknown trType: %i", tr->trType );
break;
}
}
Expand Down

0 comments on commit 4de32b1

Please sign in to comment.