diff options
Diffstat (limited to 'core/fxcodec/codec/ccodec_gifmodule.cpp')
-rw-r--r-- | core/fxcodec/codec/ccodec_gifmodule.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcodec/codec/ccodec_gifmodule.cpp b/core/fxcodec/codec/ccodec_gifmodule.cpp index b7352ba53c..caa21e1424 100644 --- a/core/fxcodec/codec/ccodec_gifmodule.cpp +++ b/core/fxcodec/codec/ccodec_gifmodule.cpp @@ -88,7 +88,7 @@ FXGIF_Context* CCodec_GifModule::Start() { if (!p) return nullptr; - FXSYS_memset(p, 0, sizeof(FXGIF_Context)); + memset(p, 0, sizeof(FXGIF_Context)); p->m_AllocFunc = gif_alloc_func; p->m_FreeFunc = gif_free_func; p->gif_ptr = nullptr; @@ -177,7 +177,7 @@ int32_t CCodec_GifModule::LoadFrame(FXGIF_Context* ctx, buf += size; size = *buf++; if (size == 20) { - FXSYS_memcpy(pAttribute->m_strTime, buf, size); + memcpy(pAttribute->m_strTime, buf, size); } } } |