From e1af1eb2b645a7316dbbb8bf6b6acf5a763b2a1e Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 10 Feb 2012 19:18:40 -0500 Subject: [PATCH] [editorKeysounds] Stop an editor closing crash. If you close the program while in the editor in debug mode, it can occasionally cause a bad access violation with the mutexes. If someone really wants this back, go ahead and put it back in. ...this really should have gone in default first. --- src/TimingData.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/TimingData.cpp b/src/TimingData.cpp index 0c14ec400d..71bb51d804 100644 --- a/src/TimingData.cpp +++ b/src/TimingData.cpp @@ -38,9 +38,6 @@ void TimingData::Clear() vector &vSegs = m_avpTimingSegments[tst]; for( unsigned i = 0; i < vSegs.size(); ++i ) { -#if defined(DEBUG) - LOG->Trace( "TimingData::Clear(): deleting %p", vSegs[i] ); -#endif SAFE_DELETE( vSegs[i] ); }