HLE: misc: throw a more descriptive error when the loaded processes doesn't contain _latestPid (likely missing FW)

This commit is contained in:
Evan Husted 2025-01-15 03:00:23 -06:00
parent fd4d801bfd
commit 017f46f318
3 changed files with 45 additions and 7 deletions

View file

@ -0,0 +1,10 @@
using System;
namespace Ryujinx.Common
{
public class RyujinxException : Exception
{
public RyujinxException(string message) : base(message)
{ }
}
}