Fix delete[] in mxstillpresenter.cpp

Without this the game doesn't  run on Linux :)
This commit is contained in:
Anders Jenbo 2025-05-17 04:34:21 +02:00 committed by GitHub
parent 46ae3fbe89
commit 857ed50e1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,7 +53,7 @@ void MxStillPresenter::CreateBitmap()
m_frameBitmap = new MxBitmap;
m_frameBitmap->ImportBitmapInfo(m_bitmapInfo);
delete m_bitmapInfo;
delete[] m_bitmapInfo;
m_bitmapInfo = NULL;
}