Add pcm_rec_init() to the sim's init.
It makes sim behavior a little more target-like and enables to reproduce FS#12241. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30839 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a02bd81c03
commit
d3c21023e0
1 changed files with 6 additions and 2 deletions
|
@ -408,7 +408,11 @@ static void init(void)
|
|||
scrobbler_init();
|
||||
|
||||
audio_init();
|
||||
|
||||
|
||||
#if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING)
|
||||
pcm_rec_init();
|
||||
#endif
|
||||
|
||||
settings_apply_skins();
|
||||
}
|
||||
|
||||
|
@ -687,7 +691,7 @@ static void init(void)
|
|||
audio_init();
|
||||
CHART("<audio_init");
|
||||
|
||||
#if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING) && !defined(SIMULATOR)
|
||||
#if (CONFIG_CODEC == SWCODEC) && defined(HAVE_RECORDING)
|
||||
pcm_rec_init();
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue