Commit 63672035 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

wineandroid.drv: Turn variable 'options' into a static constant.

parent 53c8abbf
......@@ -287,8 +287,8 @@ static SLObjectItf outputmix;
HRESULT AUDDRV_Init(void)
{
static const SLEngineOption options[] = { {SL_ENGINEOPTION_THREADSAFE, SL_BOOLEAN_TRUE} };
SLresult sr;
SLEngineOption options[] = { {SL_ENGINEOPTION_THREADSAFE, SL_BOOLEAN_TRUE} };
sr = pslCreateEngine(&sl, 1, options, 0, NULL, NULL);
if(sr != SL_RESULT_SUCCESS){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment