SAGA2: Fix mouseimg alloc-dealloc problem

This commit is contained in:
a/ 2021-06-09 01:26:35 +09:00 committed by Eugene Sandulenko
parent 9642a17a0b
commit 943df6181e
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

@ -193,10 +193,10 @@ void createStackedImage(
// Dispose of an image created with createStackedImage
inline void disposeStackedImage(gPixelMap *image) {
assert(image->data != NULL);
assert(image->data != nullptr);
delete [] image->data;
image->data = NULL;
free(image->data);
image->data = nullptr;
}
//-----------------------------------------------------------------------