summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/VolumeGC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DiscIO/Src/VolumeGC.cpp')
-rw-r--r--Source/Core/DiscIO/Src/VolumeGC.cpp18
1 files changed, 2 insertions, 16 deletions
diff --git a/Source/Core/DiscIO/Src/VolumeGC.cpp b/Source/Core/DiscIO/Src/VolumeGC.cpp
index aca22480c9..3082d74aa2 100644
--- a/Source/Core/DiscIO/Src/VolumeGC.cpp
+++ b/Source/Core/DiscIO/Src/VolumeGC.cpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2003-2008 Dolphin Project.
+// Copyright (C) 2003-2009 Dolphin Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -20,14 +20,6 @@
#include "VolumeGC.h"
#include "StringUtil.h"
-//////////////////////////////////////////////////
-// Music mod
-// ŻŻŻŻŻŻŻŻŻŻ
-#include "Setup.h" // Define MUSICMOD here
-#ifdef MUSICMOD
-#include "../../../../Externals/MusicMod/Main/Src/Main.h"
-#endif
-///////////////////////
namespace DiscIO
{
@@ -45,13 +37,7 @@ bool CVolumeGC::Read(u64 _Offset, u64 _Length, u8* _pBuffer) const
{
if (m_pReader == NULL)
return false;
- //////////////////////////////////////////////////
- // Music mod
- // ŻŻŻŻŻŻŻŻŻŻ
- #ifdef MUSICMOD
- MusicMod::FindFilename(_Offset, _Length);
- #endif
- ///////////////////////
+
return m_pReader->Read(_Offset, _Length, _pBuffer);
}