Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
hzqst committed Jun 11, 2024
1 parent 1fe7f08 commit 9177040
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions Plugins/CaptionMod/exportfuncs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,6 @@ cl_entity_t* EngineGetViewEntity(void)
return gEngfuncs.GetEntityByIndex((*cl_viewentity));
}

void COM_FixSlashes(char *pname)
{
#ifdef _WIN32
while (*pname) {
if (*pname == '/')
*pname = '\\';
pname++;
}
#else
while (*pname) {
if (*pname == '\\')
*pname = '/';
pname++;
}
#endif
}

int HUD_VidInit(void)
{
int result = gExportfuncs.HUD_VidInit();
Expand Down

0 comments on commit 9177040

Please sign in to comment.