diff --git a/src/kernel.cpp b/src/kernel.cpp index 8874cf7..3d80d71 100644 --- a/src/kernel.cpp +++ b/src/kernel.cpp @@ -33,12 +33,9 @@ CKernel *CKernel::s_pThis = 0; CKernel::CKernel (void) : CStdlibAppStdio ("minidexed"), - //CStdlibAppNetwork ("minidexed", CSTDLIBAPP_DEFAULT_PARTITION, - // 0, 0, 0, 0, NET_DEVICE_TYPE), m_Config (&mFileSystem), m_GPIOManager (&mInterrupt), m_I2CMaster (CMachineInfo::Get ()->GetDevice (DeviceI2CMaster), TRUE), - //m_Scheduler(), m_pDexed (0) { s_pThis = this; @@ -115,7 +112,7 @@ CStdlibApp::TShutdownMode CKernel::Run (void) mScreen.Update (); } - m_CPUThrottle.Update (); + m_CPUThrottle.Update (); } return ShutdownHalt; diff --git a/src/kernel.h b/src/kernel.h index f5e080e..3d9d70b 100644 --- a/src/kernel.h +++ b/src/kernel.h @@ -55,7 +55,6 @@ private: CCPUThrottle m_CPUThrottle; CGPIOManager m_GPIOManager; CI2CMaster m_I2CMaster; - //CScheduler m_Scheduler; CMiniDexed *m_pDexed; CUSBController *m_pUSB; diff --git a/src/udpmididevice.h b/src/udpmididevice.h index f20cc79..55bc7a2 100644 --- a/src/udpmididevice.h +++ b/src/udpmididevice.h @@ -47,7 +47,7 @@ public: private: CMiniDexed *m_pSynthesizer; CConfig *m_pConfig; - CBcmRandomNumberGenerator m_Random; + CBcmRandomNumberGenerator m_Random; CAppleMIDIParticipant* m_pAppleMIDIParticipant; // AppleMIDI participant instance CUDPMIDIReceiver* m_pUDPMIDIReceiver;