diff options
author | Max Horn | 2010-03-10 21:01:44 +0000 |
---|---|---|
committer | Max Horn | 2010-03-10 21:01:44 +0000 |
commit | c97ee14a65afc0b8a11ef5c10105e966f67a5934 (patch) | |
tree | 0514519a8d07564c3f572689b5bd75ed99111dea /backends/platform/iphone | |
parent | 5af51ba9a1f60f740401fdb513d1a961c590e527 (diff) | |
download | scummvm-rg350-c97ee14a65afc0b8a11ef5c10105e966f67a5934.tar.gz scummvm-rg350-c97ee14a65afc0b8a11ef5c10105e966f67a5934.tar.bz2 scummvm-rg350-c97ee14a65afc0b8a11ef5c10105e966f67a5934.zip |
Remove last traces of OSystem::getOutputSampleRate()
svn-id: r48229
Diffstat (limited to 'backends/platform/iphone')
-rw-r--r-- | backends/platform/iphone/osys_main.h | 1 | ||||
-rw-r--r-- | backends/platform/iphone/osys_sound.cpp | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/backends/platform/iphone/osys_main.h b/backends/platform/iphone/osys_main.h index c923d0f4e8..3c80c83998 100644 --- a/backends/platform/iphone/osys_main.h +++ b/backends/platform/iphone/osys_main.h @@ -162,7 +162,6 @@ public: static void mixCallback(void *sys, byte *samples, int len); virtual void setupMixer(void); - virtual int getOutputSampleRate() const; virtual void setTimerCallback(TimerProc callback, int interval); virtual int getScreenChangeID() const { return _screenChangeCount; } virtual void quit(); diff --git a/backends/platform/iphone/osys_sound.cpp b/backends/platform/iphone/osys_sound.cpp index 60b8d04a9b..6affc114f3 100644 --- a/backends/platform/iphone/osys_sound.cpp +++ b/backends/platform/iphone/osys_sound.cpp @@ -105,7 +105,3 @@ void OSystem_IPHONE::stopSoundsystem() { AudioQueueDispose(s_AudioQueue.queue, true); _mixer->setReady(false); } - -int OSystem_IPHONE::getOutputSampleRate() const { - return AUDIO_SAMPLE_RATE; -} |