Small issue fixes

Currently launching apps and games do not work.
This commit is contained in:
Jacobwasbeast 2025-03-11 14:50:08 -05:00
parent 03b40dc552
commit 99c1ca7446
4 changed files with 5 additions and 2 deletions

View File

@ -59,7 +59,7 @@ namespace Ryujinx.HLE.HOS
public void Execute(IExecutionContext context, ulong codeAddress) public void Execute(IExecutionContext context, ulong codeAddress)
{ {
// We must wait until shader cache is loaded, among other things, before executing CPU code. // We must wait until shader cache is loaded, among other things, before executing CPU code.
//_gpuContext.WaitUntilGpuReady(); _gpuContext.WaitUntilGpuReady();
_cpuContext.Execute(context, codeAddress); _cpuContext.Execute(context, codeAddress);
} }

View File

@ -54,6 +54,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
if (!system.Device.Processes.LoadNca(contentPath, out var Process)) if (!system.Device.Processes.LoadNca(contentPath, out var Process))
{ {
Logger.Warning?.Print(LogClass.ServiceAm, $"Unable to load {programId}");
return ResultCode.AppletLaunchFailed; return ResultCode.AppletLaunchFailed;
} }

View File

@ -11,7 +11,9 @@ using Ryujinx.Common.Helper;
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.Common.Utilities; using Ryujinx.Common.Utilities;
using Ryujinx.HLE; using Ryujinx.HLE;
using Ryujinx.HLE.HOS.Services.Ns.Types;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq; using System.Linq;
using RyuLogger = Ryujinx.Common.Logging.Logger; using RyuLogger = Ryujinx.Common.Logging.Logger;
@ -883,6 +885,7 @@ namespace Ryujinx.Ava.Systems.Configuration
System.Language.Value.ToHLE(), System.Language.Value.ToHLE(),
System.Region.Value.ToHLE(), System.Region.Value.ToHLE(),
Graphics.VSyncMode, Graphics.VSyncMode,
new ImmutableArray<RyuApplicationData>(),
System.EnableDockedMode, System.EnableDockedMode,
System.EnablePtc, System.EnablePtc,
System.EnableInternetAccess, System.EnableInternetAccess,

View File

@ -1,7 +1,6 @@
using Avalonia.Data.Converters; using Avalonia.Data.Converters;
using CommunityToolkit.Mvvm.ComponentModel; using CommunityToolkit.Mvvm.ComponentModel;
using Gommon; using Gommon;
using Ryujinx.Ava.Utilities.Configuration;
using System; using System;
using System.Globalization; using System.Globalization;