Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio/pcm.cc')
-rw-r--r--src/audio/pcm.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/audio/pcm.cc b/src/audio/pcm.cc
index b485199..7a3f767 100644
--- a/src/audio/pcm.cc
+++ b/src/audio/pcm.cc
@@ -33,17 +33,4 @@ void PCM::clear()
memset(pcm_data, 0, pcm_size);
}
-void PCM::load(const char *name)
-{
- PCM *pcm = Wav::load(name);
- if (pcm) {
- delete pcm;
- }
-}
-
-void PCM::load(std::string const & name)
-{
- load(name.c_str());
-}
-
}