From e6f846756e9a445293e19447516445d1a100bb25 Mon Sep 17 00:00:00 2001 From: Adam Olsen Date: Tue, 17 Jul 2001 00:21:56 +0000 Subject: [PATCH] console->pC_Init to general->p_Init, ditto for shutdown. I'm assuming this is what taniwha meant. Shoulda test-built ;) --- libs/console/console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/console/console.c b/libs/console/console.c index 3d2d54f6a..f3c5235c8 100644 --- a/libs/console/console.c +++ b/libs/console/console.c @@ -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); } }