remove MusicMod

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3657 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2009-07-03 03:26:23 +00:00
parent 518d3854ba
commit 7e8a2fc136
125 changed files with 3 additions and 26571 deletions

View File

@ -256,13 +256,6 @@ void CFrame::PopulateToolbar(wxToolBar* toolBar)
toolBar->AddSeparator();
toolBar->AddTool(IDM_HELPABOUT, _T("About"), m_Bitmaps[Toolbar_Help], _T("About Dolphin"));
// Music mod
#ifdef MUSICMOD
MM_PopulateGUI();
#endif
// after adding the buttons to the toolbar, must call Realize() to reflect
// the changes
toolBar->Realize();
@ -383,12 +376,6 @@ void CFrame::InitBitmaps()
default: PanicAlert("Theme selection went wrong");
}
// Music modification
#ifdef MUSICMOD
MM_InitBitmaps(Theme);
#endif
// Update in case the bitmap has been updated
if (GetToolBar() != NULL)
RecreateToolbar();
@ -398,11 +385,6 @@ void CFrame::InitBitmaps()
// Start the game or change the disc
void CFrame::BootGame()
{
// Music modification
#ifdef MUSICMOD
MM_OnPlay();
#endif
// Rerecording
#ifdef RERECORDING
Core::RerecordingStart();
@ -529,11 +511,6 @@ void CFrame::OnScreenshot(wxCommandEvent& WXUNUSED (event))
// Stop the emulation
void CFrame::DoStop()
{
// Music modification
#ifdef MUSICMOD
MM_OnStop();
#endif
// Rerecording
#ifdef RERECORDING
Core::RerecordingStop();
@ -815,11 +792,6 @@ void CFrame::ToggleConsole(bool check)
else
console->Close();
// Music mod
#ifdef MUSICMOD
MM_OnLog(SConfig::GetInstance().m_InterfaceConsole);
#endif
// Make sure the check is updated (if wxw isn't calling this func)
GetMenuBar()->FindItem(IDM_TOGGLE_CONSOLE)->Check(check);
}
@ -827,10 +799,6 @@ void CFrame::ToggleConsole(bool check)
// Update the enabled/disabled status
void CFrame::UpdateGUI()
{
#ifdef MUSICMOD
MM_UpdateGUI();
#endif
// Save status
bool initialized = Core::isRunning();
bool running = Core::GetState() == Core::CORE_RUN;