mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 18:21:13 +02:00
misc: chore: Replace Gommon functions with standard .NET equivalents (part 3)
This commit is contained in:
@@ -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;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user