summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/codec/fx_codec_gif.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/fxcodec/codec/fx_codec_gif.cpp')
-rw-r--r--core/src/fxcodec/codec/fx_codec_gif.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/fxcodec/codec/fx_codec_gif.cpp b/core/src/fxcodec/codec/fx_codec_gif.cpp
index d22c156fdb..4281a0d492 100644
--- a/core/src/fxcodec/codec/fx_codec_gif.cpp
+++ b/core/src/fxcodec/codec/fx_codec_gif.cpp
@@ -70,7 +70,7 @@ void* CCodec_GifModule::Start(void* pModule)
if (p == NULL) {
return NULL;
}
- FXSYS_memset32(p, 0, sizeof(FXGIF_Context));
+ FXSYS_memset(p, 0, sizeof(FXGIF_Context));
p->m_AllocFunc = _gif_alloc_func;
p->m_FreeFunc = _gif_free_func;
p->gif_ptr = NULL;
@@ -156,7 +156,7 @@ int32_t CCodec_GifModule::LoadFrame(void* pContext, int frame_num, CFX_DIBAttrib
buf += size;
size = *buf++;
if (size == 20) {
- FXSYS_memcpy32(pAttribute->m_strTime, buf, size);
+ FXSYS_memcpy(pAttribute->m_strTime, buf, size);
}
}
}