mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-25 20:28:48 +08:00
d43edc865a
* Fix Gen5 thread and AGC compatibility * Trim compatibility comments * Report selected Vulkan GPU * Clean up CPU title label * Improve emulator frame pacing and performance * Regenerate package locks with pinned SDK --------- Co-authored-by: Spooks4576 <Spooks4576@users.noreply.github.com>
20 lines
464 B
C#
20 lines
464 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
using SharpEmu.HLE;
|
|
|
|
namespace SharpEmu.Libs.Voice;
|
|
|
|
public static class VoiceQoSExports
|
|
{
|
|
[SysAbiExport(
|
|
Nid = "U8IfNl6-Css",
|
|
ExportName = "sceVoiceQoSInit",
|
|
Target = Generation.Gen4 | Generation.Gen5,
|
|
LibraryName = "libSceVoiceQoS")]
|
|
public static int VoiceQoSInit(CpuContext ctx)
|
|
{
|
|
return ctx.SetReturn(0);
|
|
}
|
|
}
|