mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
console->pC_Init to general->p_Init, ditto for shutdown. I'm assuming
this is what taniwha meant. Shoulda test-built ;)
This commit is contained in:
parent
8c3f799282
commit
e6f846756e
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ Con_Init (const char *plugin_name)
|
|||
{
|
||||
con_module = PI_LoadPlugin ("console", plugin_name);
|
||||
if (con_module) {
|
||||
con_module->functions->console->pC_Init ();
|
||||
con_module->functions->general->p_Init ();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -58,7 +58,7 @@ void
|
|||
Con_Shutdown (void)
|
||||
{
|
||||
if (con_module) {
|
||||
con_module->functions->console->pC_Shutdown ();
|
||||
con_module->functions->general->p_Shutdown ();
|
||||
PI_UnloadPlugin (con_module);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue