mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-08 01:17:17 +00:00
Log ims in switch ctor instead of apphost so all initializers get the same behavior
This commit is contained in:
parent
1e7e4322b4
commit
1ece186254
@ -4,6 +4,7 @@ using Ryujinx.Audio.Backends.CompatLayer;
|
|||||||
using Ryujinx.Audio.Integration;
|
using Ryujinx.Audio.Integration;
|
||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
using Ryujinx.Common.Configuration;
|
using Ryujinx.Common.Configuration;
|
||||||
|
using Ryujinx.Common.Logging;
|
||||||
using Ryujinx.Graphics.Gpu;
|
using Ryujinx.Graphics.Gpu;
|
||||||
using Ryujinx.HLE.FileSystem;
|
using Ryujinx.HLE.FileSystem;
|
||||||
using Ryujinx.HLE.HOS;
|
using Ryujinx.HLE.HOS;
|
||||||
@ -83,6 +84,11 @@ namespace Ryujinx.HLE
|
|||||||
|
|
||||||
UpdateVSyncInterval();
|
UpdateVSyncInterval();
|
||||||
#pragma warning restore IDE0055
|
#pragma warning restore IDE0055
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
if (Configuration.IgnoreMissingServices)
|
||||||
|
Logger.Notice.Print(LogClass.Emulation, "Ignore Missing Services is enabled.", nameof(Switch));
|
||||||
|
#endif
|
||||||
|
|
||||||
Shared = this;
|
Shared = this;
|
||||||
}
|
}
|
||||||
|
@ -901,11 +901,6 @@ namespace Ryujinx.Ava.Systems
|
|||||||
_viewModel.UiHandler
|
_viewModel.UiHandler
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
#if DEBUG
|
|
||||||
if (Device.Configuration.IgnoreMissingServices)
|
|
||||||
Logger.Notice.Print(LogClass.Emulation, "Ignore Missing Services is enabled.");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static IHardwareDeviceDriver InitializeAudio()
|
private static IHardwareDeviceDriver InitializeAudio()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user