mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-29 10:02:54 +00:00
misc: chore: Use explicit types in the Avalonia project
This commit is contained in:
@@ -40,10 +40,10 @@ namespace Ryujinx.Ava.Utilities.SystemInfo
|
||||
|
||||
static ulong GetVMInfoAvailableMemory()
|
||||
{
|
||||
var port = mach_host_self();
|
||||
uint port = mach_host_self();
|
||||
|
||||
uint pageSize = 0;
|
||||
var result = host_page_size(port, ref pageSize);
|
||||
int result = host_page_size(port, ref pageSize);
|
||||
|
||||
if (result != 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user