diff options
author | Max Horn | 2008-06-28 15:13:54 +0000 |
---|---|---|
committer | Max Horn | 2008-06-28 15:13:54 +0000 |
commit | 3b1a60c3b23fa509cb2a9d3f2f85eb4d9997724b (patch) | |
tree | 482980c59b1655ad58da0ddddcc66e363e517424 /backends/platform/ds/arm9/source | |
parent | 861cf07522540222198f143ee480f6682df9f11f (diff) | |
download | scummvm-rg350-3b1a60c3b23fa509cb2a9d3f2f85eb4d9997724b.tar.gz scummvm-rg350-3b1a60c3b23fa509cb2a9d3f2f85eb4d9997724b.tar.bz2 scummvm-rg350-3b1a60c3b23fa509cb2a9d3f2f85eb4d9997724b.zip |
Removed obsolete ::clearSoundCallback() code
svn-id: r32826
Diffstat (limited to 'backends/platform/ds/arm9/source')
-rw-r--r-- | backends/platform/ds/arm9/source/osystem_ds.cpp | 8 | ||||
-rw-r--r-- | backends/platform/ds/arm9/source/osystem_ds.h | 1 |
2 files changed, 1 insertions, 8 deletions
diff --git a/backends/platform/ds/arm9/source/osystem_ds.cpp b/backends/platform/ds/arm9/source/osystem_ds.cpp index 6e6b457115..d2c3b579bd 100644 --- a/backends/platform/ds/arm9/source/osystem_ds.cpp +++ b/backends/platform/ds/arm9/source/osystem_ds.cpp @@ -433,13 +433,7 @@ void OSystem_DS::unlockMutex(MutexRef mutex) { void OSystem_DS::deleteMutex(MutexRef mutex) { } -void OSystem_DS::clearSoundCallback() { -// consolePrintf("Clearing sound callback"); -// DS::setSoundProc(NULL, NULL); -} - -int OSystem_DS::getOutputSampleRate() const -{ +int OSystem_DS::getOutputSampleRate() const { return DS::getSoundFrequency(); } diff --git a/backends/platform/ds/arm9/source/osystem_ds.h b/backends/platform/ds/arm9/source/osystem_ds.h index 246797188f..e53575a4a5 100644 --- a/backends/platform/ds/arm9/source/osystem_ds.h +++ b/backends/platform/ds/arm9/source/osystem_ds.h @@ -114,7 +114,6 @@ public: virtual void unlockMutex(MutexRef mutex); virtual void deleteMutex(MutexRef mutex); - virtual void clearSoundCallback(); virtual int getOutputSampleRate() const; virtual bool openCD(int drive); |