mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-23 12:53:09 +00:00
Use memory mapped async mixing on OSX
The OSX specific preferences dialog sets com_asyncSound to "1" when OpenAL is used, do the same.
This commit is contained in:
parent
8df54ffad2
commit
03d4833aa9
1 changed files with 1 additions and 3 deletions
|
@ -80,9 +80,7 @@ idCVar com_memoryMarker( "com_memoryMarker", "-1", CVAR_INTEGER | CVAR_SYSTEM |
|
|||
idCVar com_preciseTic( "com_preciseTic", "1", CVAR_BOOL|CVAR_SYSTEM, "run one game tick every async thread update" );
|
||||
idCVar com_asyncInput( "com_asyncInput", "0", CVAR_BOOL|CVAR_SYSTEM, "sample input from the async thread" );
|
||||
#define ASYNCSOUND_INFO "0: mix sound inline, 1: memory mapped async mix, 2: callback mixing, 3: write async mix"
|
||||
#if defined( MACOS_X )
|
||||
idCVar com_asyncSound( "com_asyncSound", "2", CVAR_INTEGER|CVAR_SYSTEM|CVAR_ROM, ASYNCSOUND_INFO );
|
||||
#elif defined( __unix__ )
|
||||
#if defined( __unix__ ) && !defined( MACOS_X )
|
||||
idCVar com_asyncSound( "com_asyncSound", "3", CVAR_INTEGER|CVAR_SYSTEM|CVAR_ROM, ASYNCSOUND_INFO );
|
||||
#else
|
||||
idCVar com_asyncSound( "com_asyncSound", "1", CVAR_INTEGER|CVAR_SYSTEM, ASYNCSOUND_INFO, 0, 1 );
|
||||
|
|
Loading…
Reference in a new issue