misc: do not log dirty hack changes if ShowDirtyHacks is disabled
parent
61ae427a4d
commit
6286501550
|
|
@ -645,6 +645,9 @@ namespace Ryujinx.Ava.Utilities.Configuration
|
|||
|
||||
private void HackChanged(object sender, ReactiveEventArgs<bool> rxe)
|
||||
{
|
||||
if (!ShowDirtyHacks)
|
||||
return;
|
||||
|
||||
var newHacks = EnabledHacks.Select(x => x.Hack)
|
||||
.JoinToString(", ");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue