(Android) Fix sound - don't fix samplerate at 44Khz

This commit is contained in:
twinaphex 2012-12-03 03:21:10 +01:00
parent 5eaaaacaf6
commit 6a7e03aadb
2 changed files with 1 additions and 3 deletions

View File

@ -109,8 +109,6 @@ static void *sl_init(const char *device, unsigned rate, unsigned latency)
{
(void)device;
g_settings.audio.out_rate = 44100;
SLDataFormat_PCM fmt_pcm = {0};
SLDataSource audio_src = {0};
SLDataSink audio_sink = {0};

View File

@ -1175,7 +1175,7 @@ static bool gl_frame(void *data, const void *frame, unsigned width, unsigned hei
if (msg)
gl_render_msg(gl, msg);
#if !defined(RARCH_CONSOLE) && !defined(ANDROID)
#if !defined(RARCH_CONSOLE)
context_update_window_title_func(false);
#endif