misc: chore: Replace Gommon functions with standard .NET equivalents (part 3)

This commit is contained in:
KeatonTheBot
2025-09-04 14:28:54 -05:00
parent 17946c78e6
commit 9addccb50f
3 changed files with 6 additions and 6 deletions
@@ -8,7 +8,6 @@ using Avalonia.Threading;
using DynamicData;
using DynamicData.Binding;
using FluentAvalonia.UI.Controls;
using Gommon;
using LibHac.Common;
using Ryujinx.Ava.Common;
using Ryujinx.Ava.Common.Locale;
@@ -1571,7 +1570,7 @@ namespace Ryujinx.Ava.UI.ViewModels
VolumeStatusText = args.VolumeStatus;
FifoStatusText = args.FifoStatus;
ShaderCountText = args.ShaderCount > 0 ? $"Compiling shaders: {args.ShaderCount}" : string.Empty;
ShowRightmostSeparator = !ShaderCountText.IsNullOrEmpty();
ShowRightmostSeparator = !string.IsNullOrEmpty(ShaderCountText);
ShowStatusSeparator = true;
});