early-access version 3028

main
pineappleEA 2022-10-14 21:58:05 +02:00
parent 0ccd766efb
commit 0c8e3298c3
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3027. This is the source code for early-access 3028.
## Legal Notice ## Legal Notice

View File

@ -47,7 +47,7 @@ constexpr SinkDetails sink_details[] = {
#endif #endif
#ifdef HAVE_SDL2 #ifdef HAVE_SDL2
SinkDetails{ SinkDetails{
"sdl", "sdl2",
[](std::string_view device_id) -> std::unique_ptr<Sink> { [](std::string_view device_id) -> std::unique_ptr<Sink> {
return std::make_unique<SDLSink>(device_id); return std::make_unique<SDLSink>(device_id);
}, },
@ -76,7 +76,7 @@ const SinkDetails& GetOutputSinkDetails(std::string_view sink_id) {
#if defined(HAVE_CUBEB) && defined(HAVE_SDL2) #if defined(HAVE_CUBEB) && defined(HAVE_SDL2)
iter = find_backend("cubeb"); iter = find_backend("cubeb");
if (iter->latency() > TargetSampleCount * 3) { if (iter->latency() > TargetSampleCount * 3) {
iter = find_backend("sdl"); iter = find_backend("sdl2");
} }
#else #else
iter = std::begin(sink_details); iter = std::begin(sink_details);