- delete unused stuff

This commit is contained in:
SoapyMan 2023-04-09 21:11:52 +06:00
parent 66d45563d1
commit 0bbd2a384f
2 changed files with 0 additions and 21 deletions

View File

@ -259,7 +259,6 @@ MENU_HEADER DebugJustForFunHeader =
MENU_ITEM DebugOptionsItems[] =
{
#ifdef CUTSCENE_RECORDER
//{ gCutsceneRecorderPauseText, 5u, 2u, (pauseFunc)&NextCutsceneRecorderPlayer, MENU_QUIT_NONE, NULL },
{ gCurrentChasePauseText, 5u, 2u, (pauseFunc)&CutRec_NextChase, MENU_QUIT_NONE, NULL },
#endif
{ "Display position", PAUSE_TYPE_FUNC, 2, SetDisplayPosition, MENU_QUIT_NONE, NULL},

View File

@ -160,26 +160,6 @@ struct MODEL
int normals;
int point_normals;
int collision_block;
SVECTOR* pVertex(int i) const
{
return (SVECTOR *)(((u_char *)this) + vertices) + i;
}
SVECTOR* pNormal(int i) const
{
return (SVECTOR *)(((u_char *)this) + point_normals) + i;
}
COLLISION_PACKET* pCollisionPacket(int i) const
{
return (COLLISION_PACKET *)(((u_char *)this) + collision_block) + i;
}
char* pPolyAt(int ofs) const
{
return (char *)(((u_char *)this) + poly_block + ofs);
}
};