aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flutil.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/source/flutil.cpp')
-rw-r--r--externals/grill/flext/source/flutil.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/externals/grill/flext/source/flutil.cpp b/externals/grill/flext/source/flutil.cpp
index 284ce35c..5307b820 100644
--- a/externals/grill/flext/source/flutil.cpp
+++ b/externals/grill/flext/source/flutil.cpp
@@ -45,6 +45,11 @@ void flext::CopyMem(void *dst,const void *src,int bytes)
#endif
}
+void flext::ZeroMem(void *dst,int bytes)
+{
+ memset(dst,0,bytes);
+}
+
void flext::Sleep(float s)
{
#ifdef NT