Change prefix for interfaces

gp_* -> i_*
go_* -> o_*
This commit is contained in:
8dcc
2023-07-20 20:25:49 +02:00
parent 6640f52047
commit 4db305daa2
4 changed files with 12 additions and 12 deletions

View File

@@ -6,13 +6,13 @@
DECL_HOOK(CL_CreateMove);
bool hooks_init(void) {
HOOK(gp_client, CL_CreateMove);
HOOK(i_client, CL_CreateMove);
return true;
}
void h_CL_CreateMove(float frametime, usercmd_t* cmd, int active) {
/* printf("Hello from CL_CreateMove!\n"); */
/* bhop(cmd); */
ORIGINAL(CL_CreateMove, frametime, cmd, active);
}