mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-09 10:01:59 +00:00
misc: do not log dirty hack changes if ShowDirtyHacks is disabled
This commit is contained in:
parent
61ae427a4d
commit
6286501550
1 changed files with 3 additions and 0 deletions
|
@ -645,6 +645,9 @@ namespace Ryujinx.Ava.Utilities.Configuration
|
||||||
|
|
||||||
private void HackChanged(object sender, ReactiveEventArgs<bool> rxe)
|
private void HackChanged(object sender, ReactiveEventArgs<bool> rxe)
|
||||||
{
|
{
|
||||||
|
if (!ShowDirtyHacks)
|
||||||
|
return;
|
||||||
|
|
||||||
var newHacks = EnabledHacks.Select(x => x.Hack)
|
var newHacks = EnabledHacks.Select(x => x.Hack)
|
||||||
.JoinToString(", ");
|
.JoinToString(", ");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue