Use memory allocator.

This commit is contained in:
castano 2009-06-13 13:54:36 +00:00
parent 8888a0b0df
commit 8ef73ed87c

View File

@ -78,7 +78,7 @@ void Image::unwrap()
void Image::free()
{
::free(m_data);
nv::mem::free(m_data);
m_data = NULL;
}