Moved CRC32 from core to logic (no bug, r=me).

This commit is contained in:
David Anderson
2010-01-18 03:08:52 -08:00
parent 5e48b49b7e
commit 94d01e9e5a
13 changed files with 19 additions and 151 deletions
+3 -1
View File
@@ -36,6 +36,7 @@
#include "ThreadSupport.h"
#include "TextParsers.h"
#include "Profiler.h"
#include "sm_crc32.h"
sm_core_t smcore;
IHandleSys *handlesys;
@@ -54,7 +55,8 @@ static sm_logic_t logic =
{
NULL,
g_pThreader,
sm_profiler
sm_profiler,
UTIL_CRC32
};
static void logic_init(const sm_core_t* core, sm_logic_t* _logic)