diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-03-05 08:19:08 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-03-05 08:19:08 +0000 |
| commit | 775b95c7d3e59d0bb74d1570af6590128b883c0b (patch) | |
| tree | 29c7bb4e408835b556484742c61bfc25ccbfb2b0 /apps/plugins | |
| parent | 8867d001419158b0a4112661583c59f49632be81 (diff) | |
| download | rockbox-775b95c7d3e59d0bb74d1570af6590128b883c0b.zip rockbox-775b95c7d3e59d0bb74d1570af6590128b883c0b.tar.gz rockbox-775b95c7d3e59d0bb74d1570af6590128b883c0b.tar.bz2 rockbox-775b95c7d3e59d0bb74d1570af6590128b883c0b.tar.xz | |
Uups. Forgot to update a plugin.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12619 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/test_sampr.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/plugins/test_sampr.c b/apps/plugins/test_sampr.c index cab81d2..7e78137 100644 --- a/apps/plugins/test_sampr.c +++ b/apps/plugins/test_sampr.c @@ -192,7 +192,7 @@ void play_waveform(void) void set_frequency(int index) { rb->pcm_set_frequency(rb->hw_freq_sampr[index]); - rb->pcm_apply_settings(false); + rb->pcm_apply_settings(); } rb->audio_stop(); @@ -209,9 +209,8 @@ void play_waveform(void) /* Recordable targets can play back from other sources */ rb->audio_set_output_source(AUDIO_SRC_PLAYBACK); #endif - /* This reset parameter will likely be deleted soon and resetting be - automatic - ignore if the implementation doesn't need it */ - rb->pcm_apply_settings(true); + + rb->pcm_apply_settings(); init_audio(waveform); rb->pcm_play_data(get_more, NULL, 0); |