From 4ea78416611f9870cfd80c485744918da5c77c2a Mon Sep 17 00:00:00 2001 From: Misha <106913236+MishaProductions@users.noreply.github.com> Date: Thu, 21 Dec 2023 10:43:54 -0500 Subject: [PATCH] Remove accidently committed code --- LEGO1/legoomni.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/LEGO1/legoomni.cpp b/LEGO1/legoomni.cpp index cb130587..dd094945 100644 --- a/LEGO1/legoomni.cpp +++ b/LEGO1/legoomni.cpp @@ -504,7 +504,6 @@ MxResult LegoOmni::Create(MxOmniCreateParam& p_param) if (m_soundManager = new LegoSoundManager()) { if (m_soundManager->Create(10, 0) != SUCCESS) { - OutputDebugStringA("lego sound fail\n"); delete m_soundManager; m_soundManager = NULL; return FAILURE; @@ -513,7 +512,6 @@ MxResult LegoOmni::Create(MxOmniCreateParam& p_param) if (m_videoManager = new LegoVideoManager()) { if (m_videoManager->Create(p_param.GetVideoParam(), 100, 0) != SUCCESS) { - OutputDebugStringA("lego vid failure\n"); delete m_videoManager; m_videoManager = NULL; }