summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-03-05 08:19:08 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-03-05 08:19:08 +0000
commit775b95c7d3e59d0bb74d1570af6590128b883c0b (patch)
tree29c7bb4e408835b556484742c61bfc25ccbfb2b0
parent8867d001419158b0a4112661583c59f49632be81 (diff)
downloadrockbox-775b95c7d3e59d0bb74d1570af6590128b883c0b.tar.gz
rockbox-775b95c7d3e59d0bb74d1570af6590128b883c0b.zip
Uups. Forgot to update a plugin.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12619 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/test_sampr.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/plugins/test_sampr.c b/apps/plugins/test_sampr.c
index cab81d2a80..7e78137e97 100644
--- a/apps/plugins/test_sampr.c
+++ b/apps/plugins/test_sampr.c
@@ -192,7 +192,7 @@ void play_waveform(void)
192 void set_frequency(int index) 192 void set_frequency(int index)
193 { 193 {
194 rb->pcm_set_frequency(rb->hw_freq_sampr[index]); 194 rb->pcm_set_frequency(rb->hw_freq_sampr[index]);
195 rb->pcm_apply_settings(false); 195 rb->pcm_apply_settings();
196 } 196 }
197 197
198 rb->audio_stop(); 198 rb->audio_stop();
@@ -209,9 +209,8 @@ void play_waveform(void)
209 /* Recordable targets can play back from other sources */ 209 /* Recordable targets can play back from other sources */
210 rb->audio_set_output_source(AUDIO_SRC_PLAYBACK); 210 rb->audio_set_output_source(AUDIO_SRC_PLAYBACK);
211#endif 211#endif
212 /* This reset parameter will likely be deleted soon and resetting be 212
213 automatic - ignore if the implementation doesn't need it */ 213 rb->pcm_apply_settings();
214 rb->pcm_apply_settings(true);
215 214
216 init_audio(waveform); 215 init_audio(waveform);
217 rb->pcm_play_data(get_more, NULL, 0); 216 rb->pcm_play_data(get_more, NULL, 0);