mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
WiiWad: Use correct form of delete for arrays
This commit is contained in:
parent
0e39b8d9e7
commit
383b104af0
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue