mirror of
https://github.com/tribes2/engine.git
synced 2026-01-19 19:24:45 +00:00
29 lines
756 B
C++
29 lines
756 B
C++
//-----------------------------------------------------------------------------
|
|
// V12 Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "Platform/platformAudio.h"
|
|
//#include "winAudioDSound3.h"
|
|
//#include "winAudioDSound7.h"
|
|
|
|
namespace Audio
|
|
{
|
|
|
|
//void installPlaybackDevice( PlaybackDevice *dev );
|
|
|
|
|
|
//--------------------------------------
|
|
void detect()
|
|
{
|
|
// install devices in order of increasing audio quality
|
|
//installPlaybackDevice( DSound3SSDevice::create() );
|
|
//installPlaybackDevice( DSound7HHDevice::create() );
|
|
}
|
|
|
|
|
|
//--------------------------------------
|
|
} // End namespace Audio
|