mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
WiiWad: Use correct form of delete for arrays
This commit is contained in:
@ -49,11 +49,11 @@ WiiWAD::~WiiWAD()
|
||||
{
|
||||
if (m_Valid)
|
||||
{
|
||||
delete m_pCertificateChain;
|
||||
delete m_pTicket;
|
||||
delete m_pTMD;
|
||||
delete m_pDataApp;
|
||||
delete m_pFooter;
|
||||
delete[] m_pCertificateChain;
|
||||
delete[] m_pTicket;
|
||||
delete[] m_pTMD;
|
||||
delete[] m_pDataApp;
|
||||
delete[] m_pFooter;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user