Remove vertex_t's z variable.

This commit is contained in:
Nev3r 2020-01-04 18:29:02 +01:00
parent 91222f7527
commit 9999be2d6e
3 changed files with 2 additions and 9 deletions

View File

@ -157,15 +157,13 @@ static const char *const side_opt[] = {
enum vertex_e { enum vertex_e {
vertex_valid = 0, vertex_valid = 0,
vertex_x, vertex_x,
vertex_y, vertex_y
vertex_z
}; };
static const char *const vertex_opt[] = { static const char *const vertex_opt[] = {
"valid", "valid",
"x", "x",
"y", "y",
"z",
NULL}; NULL};
enum ffloor_e { enum ffloor_e {
@ -970,9 +968,6 @@ static int vertex_get(lua_State *L)
case vertex_y: case vertex_y:
lua_pushfixed(L, vertex->y); lua_pushfixed(L, vertex->y);
return 1; return 1;
case vertex_z:
lua_pushfixed(L, vertex->z);
return 1;
} }
return 0; return 0;
} }

View File

@ -846,7 +846,6 @@ static void P_LoadVertices(UINT8 *data)
{ {
v->x = SHORT(mv->x)<<FRACBITS; v->x = SHORT(mv->x)<<FRACBITS;
v->y = SHORT(mv->y)<<FRACBITS; v->y = SHORT(mv->y)<<FRACBITS;
v->z = 0;
} }
} }
@ -1575,7 +1574,6 @@ static void P_LoadTextmap(void)
{ {
// Defaults. // Defaults.
vt->x = vt->y = INT32_MAX; vt->x = vt->y = INT32_MAX;
vt->z = 0;
TextmapParse(vertexesPos[i], i, ParseTextmapVertexParameter); TextmapParse(vertexesPos[i], i, ParseTextmapVertexParameter);

View File

@ -83,7 +83,7 @@ typedef struct extracolormap_s
*/ */
typedef struct typedef struct
{ {
fixed_t x, y, z; fixed_t x, y;
} vertex_t; } vertex_t;
// Forward of linedefs, for sectors. // Forward of linedefs, for sectors.