From 7edba4962cd5ab0bf1d6b2f9a800c326e798df63 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Thu, 16 Nov 2023 09:14:25 -0800 Subject: [PATCH] fix https://github.com/TASEmulators/BizHawk/commit/70bd081a930d232fcfd6732549eb7488bb67f5fc (again) see https://github.com/TASEmulators/BizHawk/commit/a2185d9ef0456f6881345466229fd0950e35051b and https://github.com/TASEmulators/BizHawk/commit/8a5921182eeea03de595c106a6e341006f49096b --- src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs index ad7e46bf0d..1fb68efd51 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs @@ -182,7 +182,11 @@ namespace BizHawk.Client.EmuHawk foreach (var lib in Libraries.Values) { lib.APIs = _apiContainer; - Debug.Assert(ServiceInjector.UpdateServices(newServiceProvider, lib, mayCache: true)); + if (!ServiceInjector.UpdateServices(newServiceProvider, lib, mayCache: true)) + { + throw new("Lua lib has required service(s) that can't be fulfilled"); + } + lib.Restarted(); } }