mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-23 12:13:40 +00:00
Fix memory leak
This commit is contained in:
parent
7b69c38da5
commit
ba8ac8e292
1 changed files with 2 additions and 0 deletions
|
@ -65,6 +65,8 @@ ThreadGroup::ThreadGroup( int numThreads, const ImageFile &image, CompressionFun
|
|||
|
||||
ThreadGroup::~ThreadGroup() {
|
||||
delete m_Barrier;
|
||||
delete m_FinishMutex;
|
||||
delete m_FinishCV;
|
||||
}
|
||||
|
||||
unsigned int ThreadGroup::GetCompressedBlockSize() {
|
||||
|
|
Loading…
Reference in a new issue