1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-19 13:33:34 +01:00

Add mod enablement status in the log message (#6571)

This commit is contained in:
WilliamWsyHK 2024-04-06 19:47:01 +08:00 committed by GitHub
parent fb1171a21e
commit c8bb05633e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -218,7 +218,7 @@ namespace Ryujinx.HLE.HOS
if (types.Length > 0)
{
Logger.Info?.Print(LogClass.ModLoader, $"Found mod '{mod.Name}' [{types}]");
Logger.Info?.Print(LogClass.ModLoader, $"Found {(mod.Enabled ? "enabled" : "disabled")} mod '{mod.Name}' [{types}]");
}
}
}