mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 16:24:53 +02:00
Since we no longer support pre-Vista Windows, DirectSound support is no longer needed. WASAPI is always going to be best. Soon I'll upgrade our WASAPI backend with a new low-latency mode.
8 lines
184 B
C++
8 lines
184 B
C++
#include "Common/OSVersion.h"
|
|
#include "WindowsAudio.h"
|
|
#include "WASAPIStream.h"
|
|
|
|
WindowsAudioBackend *CreateAudioBackend(AudioBackendType type) {
|
|
return new WASAPIAudioBackend();
|
|
}
|