Fixed startup crash regression (bug 5607, r=dvander).

This commit is contained in:
Nicholas Hastings
2013-02-18 20:13:08 -05:00
parent be4ac7ca61
commit 7b42aba5ea
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -124,8 +124,8 @@ static void logic_init(const sm_core_t* core, sm_logic_t* _logic)
playerhelpers = core->playerhelpers;
adminsys = core->adminsys;
gamehelpers = core->gamehelpers;
g_pSourcePawn = core->spe1;
g_pSourcePawn2 = core->spe2;
g_pSourcePawn = *core->spe1;
g_pSourcePawn2 = *core->spe2;
}
PLATFORM_EXTERN_C ITextParsers *get_textparsers()