constness, although not complete yet

This commit is contained in:
Trammell Hudson 2015-01-03 17:43:20 +01:00
parent 43e9373666
commit 959d62d706

View File

@ -135,7 +135,7 @@ poly_position(
float trans_y
)
{
face_t * const f = g->face;
const face_t * const f = g->face;
const int start_edge = g->start_edge;
float a = f->sides[(start_edge + 0) % 3];
@ -446,7 +446,7 @@ poly_print(
poly_t * const g
)
{
face_t * const f = g->face;
const face_t * const f = g->face;
const int start_edge = g->start_edge;
g->printed = 1;