mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 08:47:10 +02:00
misc: chore: Use explicit types in audio projects
This commit is contained in:
parent
e0567c5ce9
commit
97188556d8
3 changed files with 5 additions and 5 deletions
|
@ -38,7 +38,7 @@ namespace Ryujinx.Audio.Backends.SoundIo.Native
|
|||
get => Marshal.PtrToStringAnsi(GetOutContext().Name);
|
||||
set
|
||||
{
|
||||
var context = GetOutContext();
|
||||
SoundIoOutStream context = GetOutContext();
|
||||
|
||||
if (_nameStored != nint.Zero && context.Name == _nameStored)
|
||||
{
|
||||
|
@ -129,8 +129,8 @@ namespace Ryujinx.Audio.Backends.SoundIo.Native
|
|||
|
||||
unsafe
|
||||
{
|
||||
var frameCountPtr = &nativeFrameCount;
|
||||
var arenasPtr = &arenas;
|
||||
int* frameCountPtr = &nativeFrameCount;
|
||||
IntPtr* arenasPtr = &arenas;
|
||||
CheckError(soundio_outstream_begin_write(_context, (nint)arenasPtr, (nint)frameCountPtr));
|
||||
|
||||
frameCount = *frameCountPtr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue